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

Trait Implementations

source§

impl Clone for R_CMethodDef

source§

fn clone(&self) -> R_CMethodDef

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for R_CMethodDef

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for R_CMethodDef