pub trait Initialiser {
    type Config: Copy;
    fn init(config: Self::Config) -> Self;
}

Associated Types

Required methods

Implementors