Type Alias BoolCallFunction

Source
pub type BoolCallFunction = Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *mut c_void) -> bool>;

Aliased Type§

enum BoolCallFunction {
    None,
    Some(unsafe extern "C" fn(_: *mut environmentData, _: *mut c_void) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut environmentData, _: *mut c_void) -> bool)

Some value of type T.