Enum erl_dist::message::ProcessRef [] [src]

pub enum ProcessRef {
    Pid(Pid),
    Name(Atom),
}

Identifier or name of a process.

Variants

Identifier of the process.

Name of the process.

Trait Implementations

impl Debug for ProcessRef
[src]

Formats the value using the given formatter.

impl Clone for ProcessRef
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ProcessRef
[src]

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

This method tests for !=.

impl From<Pid> for ProcessRef
[src]

Performs the conversion.

impl From<Atom> for ProcessRef
[src]

Performs the conversion.