Type Alias libR_sys::DL_FUNC

source ·
pub type DL_FUNC = Option<unsafe extern "C" fn() -> *mut c_void>;
Expand description

Called with a variable argument set after casting to a compatible function pointer.

Aliased Type§

enum DL_FUNC {
    None,
    Some(unsafe extern "C" fn() -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn() -> *mut c_void)

Some value of type T.