pub struct OutgoingMessage<I> {
pub target: Option<I>,
pub message: PlumtreeMessage,
}Expand description
Outgoing message to be sent.
Fields§
§target: Option<I>Target peer for unicast messages, None for broadcast.
message: PlumtreeMessageMessage to send.
Implementations§
Source§impl<I> OutgoingMessage<I>
impl<I> OutgoingMessage<I>
Sourcepub fn unicast(target: I, message: PlumtreeMessage) -> Self
pub fn unicast(target: I, message: PlumtreeMessage) -> Self
Create a unicast message to a specific peer.
Sourcepub fn broadcast(message: PlumtreeMessage) -> Self
pub fn broadcast(message: PlumtreeMessage) -> Self
Create a broadcast message (for initial broadcast only).
Sourcepub fn is_unicast(&self) -> bool
pub fn is_unicast(&self) -> bool
Check if this is a unicast message.
Sourcepub fn is_broadcast(&self) -> bool
pub fn is_broadcast(&self) -> bool
Check if this is a broadcast message.
Trait Implementations§
Auto Trait Implementations§
impl<I> !Freeze for OutgoingMessage<I>
impl<I> RefUnwindSafe for OutgoingMessage<I>where
I: RefUnwindSafe,
impl<I> Send for OutgoingMessage<I>where
I: Send,
impl<I> Sync for OutgoingMessage<I>where
I: Sync,
impl<I> Unpin for OutgoingMessage<I>where
I: Unpin,
impl<I> UnwindSafe for OutgoingMessage<I>where
I: UnwindSafe,
Blanket Implementations§
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> 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