#[repr(C)]pub struct R_CallMethodDef_C {
pub name: *const c_char,
pub fun: DL_FUNC_C,
pub numArgs: c_int,
}Expand description
Legacy .Call registration descriptor using extern "C" ABI.
Fields§
§name: *const c_charExported symbol name.
fun: DL_FUNC_CFunction pointer implementing the routine.
numArgs: c_intDeclared arity.
Trait Implementations§
Source§impl Clone for R_CallMethodDef_C
impl Clone for R_CallMethodDef_C
Source§fn clone(&self) -> R_CallMethodDef_C
fn clone(&self) -> R_CallMethodDef_C
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for R_CallMethodDef_C
impl Debug for R_CallMethodDef_C
impl Copy for R_CallMethodDef_C
Auto Trait Implementations§
impl Freeze for R_CallMethodDef_C
impl RefUnwindSafe for R_CallMethodDef_C
impl !Send for R_CallMethodDef_C
impl !Sync for R_CallMethodDef_C
impl Unpin for R_CallMethodDef_C
impl UnsafeUnpin for R_CallMethodDef_C
impl UnwindSafe for R_CallMethodDef_C
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more