Configurable

Trait Configurable 

Source
pub trait Configurable {
    type Config;

    // Required method
    fn config(&self) -> &Self::Config;
}
Expand description

Configurable trait for types that can be configured with another type, denoted by Configurable::Config.

Required Associated Types§

Required Methods§

Source

fn config(&self) -> &Self::Config

Implementors§