[][src]Trait bm_le::DefaultWithConfig

pub trait DefaultWithConfig<C>: Sized {
    fn default_with_config(config: &C) -> Self;
}

Traits for getting default value from a config.

Required methods

fn default_with_config(config: &C) -> Self

Get the default value.

Loading content...

Implementors

impl<C, T, ML: MaxLenFromConfig<C>> DefaultWithConfig<C> for VariableVec<T, ML>[src]

impl<C, T: Default, L: LenFromConfig<C>> DefaultWithConfig<C> for FixedVec<T, L>[src]

Loading content...