Struct round_based::Outgoing

source ·
pub struct Outgoing<M> {
    pub recipient: MessageDestination,
    pub msg: M,
}
Expand description

Outgoing message

Fields§

§recipient: MessageDestination

Message destination: either one party (p2p message) or all parties (broadcast message)

§msg: M

Message being sent

Implementations§

source§

impl<M> Outgoing<M>

source

pub fn broadcast(msg: M) -> Self

Constructs an outgoing message addressed to all parties

source

pub fn p2p(recipient: PartyIndex, msg: M) -> Self

Constructs an outgoing message addressed to one party

source

pub fn map<M2, F>(self, f: F) -> Outgoing<M2>
where F: FnOnce(M) -> M2,

Maps Outgoing<M> to Outgoing<M2> by applying a function to the message body

source

pub fn as_ref(&self) -> Outgoing<&M>

Converts &Outgoing<M> to Outgoing<&M>

source

pub fn is_broadcast(&self) -> bool

Checks whether it’s broadcast message

source

pub fn is_p2p(&self) -> bool

Checks whether it’s p2p message

Trait Implementations§

source§

impl<M: Clone> Clone for Outgoing<M>

source§

fn clone(&self) -> Outgoing<M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<M: Debug> Debug for Outgoing<M>

source§

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

Formats the value using the given formatter. Read more
source§

impl<M: PartialEq> PartialEq for Outgoing<M>

source§

fn eq(&self, other: &Outgoing<M>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<M> Sink<Outgoing<M>> for MockedOutgoing<M>

Available on crate feature dev only.
§

type Error = SendError<()>

The type of value produced by the sink when an error occurs.
source§

fn poll_ready( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Attempts to prepare the Sink to receive a value. Read more
source§

fn start_send(self: Pin<&mut Self>, msg: Outgoing<M>) -> Result<(), Self::Error>

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more
source§

fn poll_flush( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Flush any remaining output from this sink. Read more
source§

fn poll_close( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Flush any remaining output and close this sink, if necessary. Read more
source§

impl<M> Sink<Outgoing<M>> for Outgoings<M>

Available on crate feature state-machine only.
§

type Error = SendErr

The type of value produced by the sink when an error occurs.
source§

fn poll_ready( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Attempts to prepare the Sink to receive a value. Read more
source§

fn start_send(self: Pin<&mut Self>, msg: Outgoing<M>) -> Result<(), Self::Error>

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more
source§

fn poll_flush( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Flush any remaining output from this sink. Read more
source§

fn poll_close( self: Pin<&mut Self>, _cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>

Flush any remaining output and close this sink, if necessary. Read more
source§

impl<M: Copy> Copy for Outgoing<M>

source§

impl<M> StructuralPartialEq for Outgoing<M>

Auto Trait Implementations§

§

impl<M> Freeze for Outgoing<M>
where M: Freeze,

§

impl<M> RefUnwindSafe for Outgoing<M>
where M: RefUnwindSafe,

§

impl<M> Send for Outgoing<M>
where M: Send,

§

impl<M> Sync for Outgoing<M>
where M: Sync,

§

impl<M> Unpin for Outgoing<M>
where M: Unpin,

§

impl<M> UnwindSafe for Outgoing<M>
where M: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more