Enum orchestra::FromOrchestra
source · pub enum FromOrchestra<Message, Signal> {
Signal(Signal),
Communication {
msg: Message,
},
}
Expand description
A message type that a subsystem receives from an orchestra. It wraps signals from an orchestra and messages that are circulating between subsystems.
It is generic over over the message type M
that a particular Subsystem
may use.
Variants§
Signal(Signal)
Signal from the Orchestra
.
Communication
Fields
§
msg: Message
Contained message
Some other Subsystem
’s message.