pub trait GossipSupportContextTrait: SubsystemContext<Message = GossipSupportMessage, Signal = OverseerSignal, OutgoingMessages = GossipSupportOutgoingMessages, Error = SubsystemError>where
GossipSupportMessage: AssociateOutgoing + Debug + Send + 'static,
AllMessages: From<GossipSupportOutgoingMessages> + From<GossipSupportMessage> + From<()>,
GossipSupportOutgoingMessages: From<NetworkBridgeTxMessage> + From<NetworkBridgeRxMessage> + From<RuntimeApiMessage> + From<ChainSelectionMessage> + From<ChainApiMessage> + From<()>,
<Self as SubsystemContext>::Sender: GossipSupportSenderTrait + SubsystemSender<GossipSupportOutgoingMessages> + SubsystemSender<NetworkBridgeTxMessage> + SubsystemSender<NetworkBridgeRxMessage> + SubsystemSender<RuntimeApiMessage> + SubsystemSender<ChainSelectionMessage> + SubsystemSender<ChainApiMessage> + SubsystemSender<()> + Send + 'static,{
type Sender: GossipSupportSenderTrait;
}
Expand description
Accumulative trait for a particular subsystem wrapper.
Required Associated Types§
Sourcetype Sender: GossipSupportSenderTrait
type Sender: GossipSupportSenderTrait
Sender.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.