Struct hyparview::message::JoinMessage[][src]

pub struct JoinMessage<T> {
    pub sender: T,
}

JOIN message.

This is sent by new nodes for joining a HyParView cluster. The receiver is the contact node of the cluster.

Fields

The node ID of the message sender.

It is also a new node that wishes to join the cluster.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for JoinMessage<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 JoinMessage<T>
[src]

Auto Trait Implementations

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

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