Struct eetf::List [] [src]

pub struct List {
    pub elements: Vec<Term>,
}

List.

Fields

Methods

impl List
[src]

Returns a nil value (i.e., an empty list).

Returns true if it is nil value, otherwise false.

Trait Implementations

impl Debug for List
[src]

Formats the value using the given formatter.

impl PartialEq for List
[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 List
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for List
[src]

Formats the value using the given formatter. Read more

impl From<Vec<Term>> for List
[src]

Performs the conversion.