#[repr(C)]pub struct FfiParam {
pub name: *const c_char,
pub data: *const c_void,
pub type_: c_int,
pub arraylength: c_int,
pub count: usize,
pub flags: c_int,
}Expand description
C-compatible parameter struct, layout-identical to NSIParam_t.
Fields§
§name: *const c_char§data: *const c_void§type_: c_int§arraylength: c_int§count: usize§flags: c_intTrait Implementations§
impl Copy for FfiParam
impl Send for FfiParam
impl Sync for FfiParam
Auto Trait Implementations§
impl Freeze for FfiParam
impl RefUnwindSafe for FfiParam
impl Unpin for FfiParam
impl UnsafeUnpin for FfiParam
impl UnwindSafe for FfiParam
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