pub trait AsSystemLabel<Marker> {
    type SystemLabel: SystemLabel;

    fn as_system_label(&self) -> Self::SystemLabel;
}
Expand description

Used to implicitly convert systems to their default labels. For example, it will convert “system functions” to their SystemTypeIdLabel.

Required Associated Types

Required Methods

Implementors