Struct eetf::Pid [] [src]

pub struct Pid {
    pub node: Atom,
    pub id: u32,
    pub serial: u32,
    pub creation: u8,
}

Process Identifier.

Fields

node: Atom id: u32 serial: u32 creation: u8

Trait Implementations

impl Clone for Pid
[src]

fn clone(&self) -> Pid

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for Pid
[src]

fn eq(&self, __arg_0: &Pid) -> bool

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

fn ne(&self, __arg_0: &Pid) -> bool

This method tests for !=.

impl Debug for Pid
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Pid
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a> From<(&'a str, u32, u32)> for Pid
[src]

fn from((node, id, serial): (&'a str, u32, u32)) -> Self

Performs the conversion.