Enum linux_tuples_client::E
[−]
[src]
pub enum E {
I(i32),
D(f64),
S(String),
T(Vec<E>),
None,
}Variants
I(i32)D(f64)S(String)T(Vec<E>)NoneMethods
impl E[src]
fn print(&self)
Trait Implementations
impl PartialEq for E[src]
fn eq(&self, __arg_0: &E) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &E) -> bool
This method tests for !=.
impl Clone for E[src]
fn clone(&self) -> E
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