pub trait Import: DeserializeOwned {
    // Provided method
    fn import(path: &str) -> Result<Self, ConfigError> { ... }
}

Provided Methods§

source

fn import(path: &str) -> Result<Self, ConfigError>

Object Safety§

This trait is not object safe.

Implementors§