Enum ppbert::bertterm::BertTerm [] [src]

pub enum BertTerm {
    Nil,
    Int(i32),
    BigInt(BigInt),
    Float(f64),
    Atom(String),
    Tuple(Vec<BertTerm>),
    List(Vec<BertTerm>),
    Map(Vec<BertTerm>, Vec<BertTerm>),
    String(Vec<u8>),
    Binary(Vec<u8>),
}

Variants

Trait Implementations

impl Debug for BertTerm
[src]

Formats the value using the given formatter.

impl PartialEq for BertTerm
[src]

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

This method tests for !=.

impl Display for BertTerm
[src]

Formats the value using the given formatter. Read more