Type Alias polkadot_node_subsystem::SpawnedSubsystem
source · pub type SpawnedSubsystem = SpawnedSubsystem<SubsystemError>;Expand description
Spawned subsystem.
Aliased Type§
struct SpawnedSubsystem {
pub name: &'static str,
pub future: Pin<Box<dyn Future<Output = Result<(), SubsystemError>> + Send, Global>>,
}Fields§
§name: &'static strName of the subsystem being spawned.
future: Pin<Box<dyn Future<Output = Result<(), SubsystemError>> + Send, Global>>The task of the subsystem being spawned.