pub trait MapSubsystem<T> {
    type Output;

    fn map_subsystem(&self, sub: T) -> Self::Output;
}
Expand description

A helper trait to map a subsystem to smth. else.

Required Associated Types§

The output type of the mapping.

Required Methods§

Consumes a T per subsystem, and maps it to Self::Output.

Implementors§