Type Alias M3RawCallEx

Source
pub type M3RawCallEx = Option<unsafe extern "C" fn(runtime: IM3Runtime, _sp: *mut u64, _mem: *mut c_void, cookie: *mut c_void) -> *const c_void>;

Aliased Type§

enum M3RawCallEx {
    None,
    Some(unsafe extern "C" fn(_: *mut M3Runtime, _: *mut u64, _: *mut c_void, _: *mut c_void) -> *const c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut M3Runtime, _: *mut u64, _: *mut c_void, _: *mut c_void) -> *const c_void)

Some value of type T.