[][src]Enum hbbft::Target

pub enum Target<N> {
    All,
    Node(N),
}

The intended recipient(s) of a message.

Variants

All

The message must be sent to all remote nodes.

Node(N)

The message must be sent to the node with the given ID.

Methods

impl<N> Target<N>[src]

pub fn message<M>(self, message: M) -> TargetedMessage<M, N>[src]

Returns a TargetedMessage with this target, and the given message.

Trait Implementations

impl<N: PartialEq> PartialEq<Target<N>> for Target<N>[src]

impl<N: Clone> Clone for Target<N>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: Eq> Eq for Target<N>[src]

impl<N: Debug> Debug for Target<N>[src]

Auto Trait Implementations

impl<N> Send for Target<N> where
    N: Send

impl<N> Sync for Target<N> where
    N: Sync

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.