Enum eetf::EncodeError [] [src]

pub enum EncodeError {
    Io(Error),
    TooLongAtomName(Atom),
    TooLargeInteger(BigInteger),
    TooLargeReferenceId(Reference),
}

Errors which can occur when encoding a term

Variants

Trait Implementations

impl Debug for EncodeError
[src]

Formats the value using the given formatter.

impl Display for EncodeError
[src]

Formats the value using the given formatter. Read more

impl Error for EncodeError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for EncodeError
[src]

Performs the conversion.