Type Alias objc_sys::IMP

source ·
pub type IMP = Option<unsafe extern "C" fn()>;
Expand description

A nullable pointer to the start of a method implementation.

Not all APIs are guaranteed to take NULL values; read the docs!

Aliased Type§

enum IMP {
    None,
    Some(unsafe extern "C" fn()),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn())

Some value of type T.