pub struct OverseerSender<OutgoingWrapper> { /* private fields */ }
Expand description
Connector to send messages towards all subsystems, while tracking the which signals where already received.
Trait Implementations§
§impl<OutgoingWrapper> Clone for OverseerSender<OutgoingWrapper>
impl<OutgoingWrapper> Clone for OverseerSender<OutgoingWrapper>
§fn clone(&self) -> OverseerSender<OutgoingWrapper>
fn clone(&self) -> OverseerSender<OutgoingWrapper>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<OutgoingWrapper> Debug for OverseerSender<OutgoingWrapper>where
OutgoingWrapper: Debug,
impl<OutgoingWrapper> Debug for OverseerSender<OutgoingWrapper>where
OutgoingWrapper: Debug,
§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<()>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
(): From<OutgoingMessage> + Send,
AllMessages: From<()> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<()>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
(): From<OutgoingMessage> + Send,
AllMessages: From<()> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<()>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<()>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
fn send_message_with_priority<'life0, 'async_trait, P>( &'life0 mut self, msg: OutgoingMessage, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<()>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<()>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalDistributionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalVotingOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalVotingOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalVotingOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalVotingOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalVotingOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalVotingOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalVotingOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalVotingParallelOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalVotingParallelOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalVotingParallelOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ApprovalVotingParallelOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ApprovalVotingParallelOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ApprovalVotingParallelOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ApprovalVotingParallelOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityDistributionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityRecoveryOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityRecoveryOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityRecoveryOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityRecoveryOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityRecoveryOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityRecoveryOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityRecoveryOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityStoreOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityStoreOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityStoreOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<AvailabilityStoreOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
AvailabilityStoreOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<AvailabilityStoreOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<AvailabilityStoreOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<BitfieldDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
BitfieldDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<BitfieldDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<BitfieldDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
BitfieldDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<BitfieldDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<BitfieldDistributionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<BitfieldSigningOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
BitfieldSigningOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<BitfieldSigningOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<BitfieldSigningOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
BitfieldSigningOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<BitfieldSigningOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<BitfieldSigningOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CandidateBackingOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CandidateBackingOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CandidateBackingOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CandidateBackingOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CandidateBackingOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CandidateBackingOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CandidateBackingOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CandidateValidationOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CandidateValidationOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CandidateValidationOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CandidateValidationOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CandidateValidationOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CandidateValidationOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CandidateValidationOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ChainApiOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ChainApiOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ChainApiOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ChainApiOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ChainApiOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ChainApiOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ChainApiOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ChainSelectionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ChainSelectionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ChainSelectionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ChainSelectionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ChainSelectionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ChainSelectionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ChainSelectionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CollationGenerationOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CollationGenerationOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CollationGenerationOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CollationGenerationOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CollationGenerationOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CollationGenerationOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CollationGenerationOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CollatorProtocolOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CollatorProtocolOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CollatorProtocolOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<CollatorProtocolOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
CollatorProtocolOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<CollatorProtocolOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<CollatorProtocolOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<DisputeCoordinatorOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
DisputeCoordinatorOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<DisputeCoordinatorOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<DisputeCoordinatorOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
DisputeCoordinatorOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<DisputeCoordinatorOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<DisputeCoordinatorOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<DisputeDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
DisputeDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<DisputeDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<DisputeDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
DisputeDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<DisputeDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<DisputeDistributionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<GossipSupportOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
GossipSupportOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<GossipSupportOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<GossipSupportOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
GossipSupportOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<GossipSupportOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<GossipSupportOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<NetworkBridgeRxOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
NetworkBridgeRxOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<NetworkBridgeRxOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<NetworkBridgeRxOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
NetworkBridgeRxOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<NetworkBridgeRxOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<NetworkBridgeRxOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<NetworkBridgeTxOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
NetworkBridgeTxOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<NetworkBridgeTxOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<NetworkBridgeTxOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
NetworkBridgeTxOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<NetworkBridgeTxOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<NetworkBridgeTxOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ProspectiveParachainsOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ProspectiveParachainsOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ProspectiveParachainsOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ProspectiveParachainsOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ProspectiveParachainsOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ProspectiveParachainsOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ProspectiveParachainsOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ProvisionerOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ProvisionerOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ProvisionerOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<ProvisionerOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
ProvisionerOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<ProvisionerOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<ProvisionerOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<PvfCheckerOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
PvfCheckerOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<PvfCheckerOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<PvfCheckerOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
PvfCheckerOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<PvfCheckerOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<PvfCheckerOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<RuntimeApiOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
RuntimeApiOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<RuntimeApiOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<RuntimeApiOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
RuntimeApiOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<RuntimeApiOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<RuntimeApiOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read more§impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<StatementDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
StatementDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<StatementDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
impl<OutgoingMessage> SubsystemSender<OutgoingMessage> for OverseerSender<StatementDistributionOutgoingMessages>where
OutgoingMessage: TryFrom<AllMessages> + Send + 'static,
StatementDistributionOutgoingMessages: From<OutgoingMessage> + Send,
AllMessages: From<StatementDistributionOutgoingMessages> + Send,
<OutgoingMessage as TryFrom<AllMessages>>::Error: Debug,
§fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
Send a direct message to some other
Subsystem
, routed based on message type.§fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
fn send_message_with_priority<'life0, 'async_trait, P>(
&'life0 mut self,
msg: OutgoingMessage,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
P: 'async_trait + Priority,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
Send a direct message with defined priority to some other
Subsystem
, routed based on message type.§fn try_send_message(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>
fn try_send_message( &mut self, msg: OutgoingMessage, ) -> Result<(), TrySendError<OutgoingMessage>>
Tries to send a direct message to some other
Subsystem
, routed based on message type.
This method is useful for cases where the message queue is bounded and the message is ok
to be dropped if the queue is full. If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
fn try_send_message_with_priority<P>(
&mut self,
msg: OutgoingMessage,
) -> Result<(), TrySendError<OutgoingMessage>>where
P: Priority,
Tries to send a direct message with defined priority to some other
Subsystem
, routed based on message type.
If the queue is full, this method will return an error.
This method is not async and will not block the current task.§fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
fn send_messages<'life0, 'async_trait, I>(
&'life0 mut self,
msgs: I,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
I: IntoIterator<Item = OutgoingMessage> + Send + 'async_trait,
<I as IntoIterator>::IntoIter: Iterator<Item = OutgoingMessage> + Send,
OverseerSender<StatementDistributionOutgoingMessages>: 'async_trait,
Send multiple direct messages to other
Subsystem
s, routed based on message type.§fn send_unbounded_message(&mut self, msg: OutgoingMessage)
fn send_unbounded_message(&mut self, msg: OutgoingMessage)
Send a message onto the unbounded queue of some other
Subsystem
, routed based on message
type. Read moreAuto Trait Implementations§
impl<OutgoingWrapper> Freeze for OverseerSender<OutgoingWrapper>
impl<OutgoingWrapper> !RefUnwindSafe for OverseerSender<OutgoingWrapper>
impl<OutgoingWrapper> Send for OverseerSender<OutgoingWrapper>where
OutgoingWrapper: Send,
impl<OutgoingWrapper> Sync for OverseerSender<OutgoingWrapper>where
OutgoingWrapper: Sync,
impl<OutgoingWrapper> Unpin for OverseerSender<OutgoingWrapper>where
OutgoingWrapper: Unpin,
impl<OutgoingWrapper> !UnwindSafe for OverseerSender<OutgoingWrapper>
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
source§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.