Struct hyparview::message::ForwardJoinMessage[][src]

pub struct ForwardJoinMessage<T> {
    pub sender: T,
    pub new_node: T,
    pub ttl: TimeToLive,
}

FORWARD_JOIN message.

This is used for disseminating a JOIN request to the members of the cluster to which the contact node belongs.

Fields

The node ID of the message sender.

The ID of the new joining node.

TTL of the message.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

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