Enum lib::E [] [src]

pub enum E {
    I(i32),
    D(f64),
    S(String),
    T(Vec<E>),
    None,
}

Enum, which is used to contain LinuxTuples element

Variants

I
D
S
T
None

Methods

impl E

fn print(&self)

Prints an element to the standard output

Examples


Trait Implementations

Derived Implementations

impl PartialEq for E

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

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

impl Clone for E

fn clone(&self) -> E

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