referrerpolicy=no-referrer-when-downgrade
polkadot_node_subsystem

Type Alias FromOrchestra

Source
pub type FromOrchestra<M> = FromOrchestra<M, OverseerSignal>;
Expand description

Specialized message type originating from the overseer.

Aliased Type§

enum FromOrchestra<M> {
    Signal(OverseerSignal),
    Communication {
        msg: M,
    },
}

Variants§

§

Signal(OverseerSignal)

Signal from the Orchestra.

§

Communication

Some other Subsystem’s message.

Fields

§msg: M

Contained message

Trait Implementations

§

impl<Message, Signal> Debug for FromOrchestra<Message, Signal>
where Message: Debug, Signal: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<Signal, Message> From<Signal> for FromOrchestra<Message, Signal>

§

fn from(signal: Signal) -> FromOrchestra<Message, Signal>

Converts to this type from the input type.