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

Required Methods

Apply a BasicSettings value to self.

Implementations on Foreign Types

Implementors