[][src]Struct tari_comms::message::OutboundMessage

pub struct OutboundMessage {
    pub tag: MessageTag,
    pub peer_node_id: NodeId,
    pub body: Bytes,
    pub reply: MessagingReplyTx,
}

Contains details required to build a message envelope and send a message to a peer. OutboundMessage will not copy the body bytes when cloned and is 'cheap to clone(tm)'.

Fields

tag: MessageTagpeer_node_id: NodeIdbody: Bytesreply: MessagingReplyTx

Implementations

impl OutboundMessage[src]

pub fn new(peer_node_id: NodeId, body: Bytes) -> Self[src]

pub fn with_reply(
    peer_node_id: NodeId,
    body: Bytes,
    reply: MessagingReplyTx
) -> Self
[src]

pub fn reply_success(&mut self)[src]

pub fn reply_fail(&mut self, reason: SendFailReason)[src]

pub fn take_reply(&mut self) -> Option<MessagingReplyTx>[src]

Trait Implementations

impl Debug for OutboundMessage[src]

impl Display for OutboundMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,