pub type WrenBindForeignMethodFn = Option<unsafe extern "C" fn(vm: *mut WrenVM, module: *const c_char, className: *const c_char, isStatic: bool, signature: *const c_char) -> WrenForeignMethodFn>;

Aliased Type§

enum WrenBindForeignMethodFn {
    None,
    Some(unsafe extern "C" fn(_: *mut WrenVM, _: *const i8, _: *const i8, _: bool, _: *const i8) -> Option<unsafe extern "C" fn(_: *mut WrenVM)>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut WrenVM, _: *const i8, _: *const i8, _: bool, _: *const i8) -> Option<unsafe extern "C" fn(_: *mut WrenVM)>)

Some value of type T.