[][src]Trait quickcfg::Load

pub trait Load: Sized {
    fn load(path: &Path) -> Result<Option<Self>, Error>;
}

Required methods

fn load(path: &Path) -> Result<Option<Self>, Error>

Load the file from the given path.

Loading content...

Implementors

impl<T> Load for T where
    T: DeserializeOwned
[src]

Loading content...