Struct eetf::ImproperList [] [src]

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

Improper list.

Fields

Trait Implementations

impl Debug for ImproperList
[src]

Formats the value using the given formatter.

impl PartialEq for ImproperList
[src]

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

This method tests for !=.

impl Clone for ImproperList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for ImproperList
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.