[][src]Enum rustler::error::Error

pub enum Error {
    BadArg,
    Atom(&'static str),
    RaiseAtom(&'static str),
    RaiseTerm(Box<dyn Encoder>),
}

Represents usual errors that can happen in a nif. This enables you to return an error from anywhere, even places where you don't have an Env availible.

Variants

BadArg

Returned when the NIF has been called with the wrong number or type of arguments.

Atom(&'static str)

Encodes the string into an atom and returns it from the NIF.

RaiseAtom(&'static str)RaiseTerm(Box<dyn Encoder>)

Methods

impl Error[src]

pub unsafe fn encode<'a>(self, env: Env<'a>) -> Term<'a>[src]

Unsafe

If self is a BadArg, RaiseAtom, or RaiseTerm value, then the term returned from this method must not be used except as the return value from the calling NIF.

Auto Trait Implementations

impl !Send for Error

impl !Sync for Error

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.