Trait polkadot_node_subsystem::gen::MapSubsystem
pub trait MapSubsystem<T> {
type Output;
// Required method
fn map_subsystem(&self, sub: T) -> Self::Output;
}
Expand description
A helper trait to map a subsystem to smth. else.
Required Associated Types§
type Output
type Output
The output type of the mapping.
Required Methods§
fn map_subsystem(&self, sub: T) -> Self::Output
fn map_subsystem(&self, sub: T) -> Self::Output
Consumes a T
per subsystem, and maps it to Self::Output
.