Enum eetf::Term [] [src]

pub enum Term {
    Atom(Atom),
    FixInteger(FixInteger),
    BigInteger(BigInteger),
    Float(Float),
    Pid(Pid),
    Port(Port),
    Reference(Reference),
    ExternalFun(ExternalFun),
    InternalFun(InternalFun),
    Binary(Binary),
    BitBinary(BitBinary),
    List(List),
    ImproperList(ImproperList),
    Tuple(Tuple),
    Map(Map),
}

Term.

Variants

Methods

impl Term
[src]

Decodes a term.

Encodes the term.

Trait Implementations

impl TryAsRef<Atom> for Term
[src]

impl TryAsRef<FixInteger> for Term
[src]

impl TryAsRef<BigInteger> for Term
[src]

impl TryAsRef<Float> for Term
[src]

impl TryAsRef<Pid> for Term
[src]

impl TryAsRef<Port> for Term
[src]

impl TryAsRef<Reference> for Term
[src]

impl TryAsRef<ExternalFun> for Term
[src]

impl TryAsRef<InternalFun> for Term
[src]

impl TryAsRef<Binary> for Term
[src]

impl TryAsRef<BitBinary> for Term
[src]

impl TryAsRef<List> for Term
[src]

impl TryAsRef<ImproperList> for Term
[src]

impl TryAsRef<Tuple> for Term
[src]

impl TryAsRef<Map> for Term
[src]

impl TryInto<Atom> for Term
[src]

impl TryInto<FixInteger> for Term
[src]

impl TryInto<BigInteger> for Term
[src]

impl TryInto<Float> for Term
[src]

impl TryInto<Pid> for Term
[src]

impl TryInto<Port> for Term
[src]

impl TryInto<Reference> for Term
[src]

impl TryInto<ExternalFun> for Term
[src]

impl TryInto<InternalFun> for Term
[src]

impl TryInto<Binary> for Term
[src]

impl TryInto<BitBinary> for Term
[src]

impl TryInto<List> for Term
[src]

impl TryInto<ImproperList> for Term
[src]

impl TryInto<Tuple> for Term
[src]

impl TryInto<Map> for Term
[src]

impl ToPrimitive for Term
[src]

Converts the value of self to an i64.

Converts the value of self to an u64.

Converts the value of self to an f64.

Converts the value of self to an isize.

Converts the value of self to an i8.

Converts the value of self to an i16.

Converts the value of self to an i32.

Converts the value of self to a usize.

Converts the value of self to an u8.

Converts the value of self to an u16.

Converts the value of self to an u32.

Converts the value of self to an f32.

impl ToBigInt for Term
[src]

Converts the value of self to a BigInt.

impl ToBigUint for Term
[src]

Converts the value of self to a BigUint.

impl Debug for Term
[src]

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Term
[src]

Formats the value using the given formatter. Read more

impl From<Atom> for Term
[src]

Performs the conversion.

impl From<FixInteger> for Term
[src]

Performs the conversion.

impl From<BigInteger> for Term
[src]

Performs the conversion.

impl From<Float> for Term
[src]

Performs the conversion.

impl From<Pid> for Term
[src]

Performs the conversion.

impl From<Port> for Term
[src]

Performs the conversion.

impl From<Reference> for Term
[src]

Performs the conversion.

impl From<ExternalFun> for Term
[src]

Performs the conversion.

impl From<InternalFun> for Term
[src]

Performs the conversion.

impl From<Binary> for Term
[src]

Performs the conversion.

impl From<BitBinary> for Term
[src]

Performs the conversion.

impl From<List> for Term
[src]

Performs the conversion.

impl From<ImproperList> for Term
[src]

Performs the conversion.

impl From<Tuple> for Term
[src]

Performs the conversion.

impl From<Map> for Term
[src]

Performs the conversion.