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
NilInt(i32)BigInt(BigInt)Float(f64)Atom(String)Tuple(Vec<BertTerm>)List(Vec<BertTerm>)Map(Vec<BertTerm>, Vec<BertTerm>)String(Vec<u8>)Binary(Vec<u8>)Trait Implementations
impl Debug for BertTerm[src]
impl PartialEq for BertTerm[src]
fn eq(&self, __arg_0: &BertTerm) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BertTerm) -> bool
This method tests for !=.