Struct hyparview::message::DisconnectMessage[][src]

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

DISCONNECT message.

This is sent by a node for removing the sender from the active view of the receiver.

Fields

The node ID of the message sender.

Trait Implementations

impl<T> From<DisconnectMessage<T>> for ProtocolMessage<T>
[src]

Performs the conversion.

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

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