Type Alias libR_sys::R_FortranMethodDef

source ·
pub type R_FortranMethodDef = R_CMethodDef;
Expand description

These are very similar to those in Rdynpriv.h, but we maintain them separately to give us more freedom to do some computations on the internal versions that are derived from these definitions.

Aliased Type§

struct R_FortranMethodDef {
    pub name: *const i8,
    pub fun: Option<unsafe extern "C" fn() -> *mut c_void>,
    pub numArgs: i32,
    pub types: *mut u32,
}

Fields§

§name: *const i8§fun: Option<unsafe extern "C" fn() -> *mut c_void>§numArgs: i32§types: *mut u32