Enum linux_tuples_client::E [] [src]

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

Enum, which is used to contain LinuxTuples element

Variants

Methods

impl E
[src]

Prints an element to the standard output

Examples


Trait Implementations

impl Clone for E
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for E
[src]

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

This method tests for !=.