Skip to main content

RCMethodDef

Type Alias RCMethodDef 

Source
type RCMethodDef = RCallMethodDef;
Expand description

R_CMethodDef has the same layout as R_CallMethodDef (name, fun, numArgs).

Aliased Type§

#[repr(C)]
struct RCMethodDef { name: *const i8, fun: *const (), num_args: i32, }

Fields§

§name: *const i8§fun: *const ()§num_args: i32