Trait signalo_pipes::traits::WithConfig[][src]

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

Trait for config-constructable systems.

Associated Types

The return type of fn with_config(…).

Required Methods

Creates an instance from a given config.

Implementors