pub trait Decoder<'a>: Sized + 'a {
    fn decode(term: Term<'a>) -> NifResult<Self>;
}

Required methods

Implementations on Foreign Types

Implementors