Type Alias OutOfMemoryFunction

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

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.