Trait rustler::Nif[][src]

pub trait Nif {
    const NAME: *const u8;
    const ARITY: u32;
    const FLAGS: u32;
    const FUNC: DEF_NIF_FUNC;
    const RAW_FUNC: unsafe extern "C" fn(nif_env: NIF_ENV, argc: c_int, argv: *const NIF_TERM) -> NIF_TERM;
}

Associated Constants

const NAME: *const u8[src]

const ARITY: u32[src]

const FLAGS: u32[src]

const FUNC: DEF_NIF_FUNC[src]

const RAW_FUNC: unsafe extern "C" fn(nif_env: NIF_ENV, argc: c_int, argv: *const NIF_TERM) -> NIF_TERM[src]

Implementors