Struct hyparview::message::ShuffleReplyMessage[][src]

pub struct ShuffleReplyMessage<T> {
    pub sender: T,
    pub nodes: Vec<T>,
}

SHUFFLE_REPLY message.

Fields

The node ID of the message sender.

The nodes selected by sender as the reply of the associated Shuffle message.

Trait Implementations

impl<T: Debug> Debug for ShuffleReplyMessage<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for ShuffleReplyMessage<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for ShuffleReplyMessage<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for ShuffleReplyMessage<T>
[src]

Auto Trait Implementations

impl<T> Send for ShuffleReplyMessage<T> where
    T: Send

impl<T> Sync for ShuffleReplyMessage<T> where
    T: Sync