Struct eetf::ImproperList [] [src]

pub struct ImproperList {
    pub elements: Vec<Term>,
    pub last: Box<Term>,
}

Improper list.

Fields

elements: Vec<Term> last: Box<Term>

Trait Implementations

impl Clone for ImproperList
[src]

fn clone(&self) -> ImproperList

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 ImproperList
[src]

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

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

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

This method tests for !=.

impl Debug for ImproperList
[src]

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

Formats the value using the given formatter.

impl Display for ImproperList
[src]

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

Formats the value using the given formatter.

impl From<(Vec<Term>, Term)> for ImproperList
[src]

fn from((elements, last): (Vec<Term>, Term)) -> Self

Performs the conversion.