Trait signalo_traits::WithConfig[][src]

pub trait WithConfig: Config {
    type Output;
    fn with_config(config: Self::Config) -> Self::Output;
}
Expand description

Trait for config-constructable systems.

Associated Types

The return type of fn with_config(…).

Required methods

Creates an instance from a given config.

Implementors