Trait system_service::Config [] [src]

pub trait Config {
    fn load<O: Options>(_: &O) -> Self;
}

Trait required for loading Config from file

Required Methods

Parse options and return it

Implementers should use the die! macro to handle failure.

Implementors