pub trait Export: Serialize {
    // Provided method
    fn export(&self, path: &str) -> Result<(), ConfigError> { ... }
}

Provided Methods§

source

fn export(&self, path: &str) -> Result<(), ConfigError>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S: Serialize> Export for S