Struct eetf::Tuple [] [src]

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

Tuple.

Fields

elements: Vec<Term>

Methods

impl Tuple
[src]

fn nil() -> Self

Trait Implementations

impl Clone for Tuple
[src]

fn clone(&self) -> Tuple

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

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

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

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

This method tests for !=.

impl Debug for Tuple
[src]

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

Formats the value using the given formatter.

impl Display for Tuple
[src]

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

Formats the value using the given formatter.

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

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

Performs the conversion.