[][src]Struct evil_janet::JanetAbstractType

#[repr(C)]pub struct JanetAbstractType {
    pub name: *const c_char,
    pub gc: Option<unsafe extern "C" fn(data: *mut c_void, len: size_t) -> c_int>,
    pub gcmark: Option<unsafe extern "C" fn(data: *mut c_void, len: size_t) -> c_int>,
    pub get: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, out: *mut Janet) -> c_int>,
    pub put: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, value: Janet)>,
    pub marshal: Option<unsafe extern "C" fn(p: *mut c_void, ctx: *mut JanetMarshalContext)>,
    pub unmarshal: Option<unsafe extern "C" fn(ctx: *mut JanetMarshalContext) -> *mut c_void>,
    pub tostring: Option<unsafe extern "C" fn(p: *mut c_void, buffer: *mut JanetBuffer)>,
    pub compare: Option<unsafe extern "C" fn(lhs: *mut c_void, rhs: *mut c_void) -> c_int>,
    pub hash: Option<unsafe extern "C" fn(p: *mut c_void, len: size_t) -> i32>,
    pub next: Option<unsafe extern "C" fn(p: *mut c_void, key: Janet) -> Janet>,
    pub call: Option<unsafe extern "C" fn(p: *mut c_void, argc: i32, argv: *mut Janet) -> Janet>,
}

Fields

name: *const c_chargc: Option<unsafe extern "C" fn(data: *mut c_void, len: size_t) -> c_int>gcmark: Option<unsafe extern "C" fn(data: *mut c_void, len: size_t) -> c_int>get: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, out: *mut Janet) -> c_int>put: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, value: Janet)>marshal: Option<unsafe extern "C" fn(p: *mut c_void, ctx: *mut JanetMarshalContext)>unmarshal: Option<unsafe extern "C" fn(ctx: *mut JanetMarshalContext) -> *mut c_void>tostring: Option<unsafe extern "C" fn(p: *mut c_void, buffer: *mut JanetBuffer)>compare: Option<unsafe extern "C" fn(lhs: *mut c_void, rhs: *mut c_void) -> c_int>hash: Option<unsafe extern "C" fn(p: *mut c_void, len: size_t) -> i32>next: Option<unsafe extern "C" fn(p: *mut c_void, key: Janet) -> Janet>call: Option<unsafe extern "C" fn(p: *mut c_void, argc: i32, argv: *mut Janet) -> Janet>

Trait Implementations

impl Clone for JanetAbstractType[src]

impl Copy for JanetAbstractType[src]

impl Debug for JanetAbstractType[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.