Enum erl_dist::epmd::NodeType [] [src]

pub enum NodeType {
    Hidden,
    Normal,
    Unknown(u8),
}

Type of a distributed node.

Variants

Hidden node (C-node).

Normal Erlang node.

Unknown node type.

Trait Implementations

impl Debug for NodeType
[src]

Formats the value using the given formatter.

impl Clone for NodeType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NodeType
[src]

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

This method tests for !=.

impl Eq for NodeType
[src]

impl From<u8> for NodeType
[src]

Performs the conversion.