pub trait ApplySettings {
    fn apply_settings<A>(self, settings: &BasicSettings<A>) -> Self
    where
        A: DeserializeOwned
; }
Expand description

Extension trait for applying parsed settings to the server object.

Required Methods§

Apply a BasicSettings value to self.

Implementations on Foreign Types§

Implementors§