#[repr(C, align(64))]
pub union ffi_raw {
pub sint: ffi_sarg,
pub uint: ffi_arg,
pub flt: f32,
pub data: [c_char; 4],
pub ptr: *mut c_void,
}
Fields§
§sint: ffi_sarg
§uint: ffi_arg
§flt: f32
§data: [c_char; 4]
§ptr: *mut c_void
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ffi_raw
impl RefUnwindSafe for ffi_raw
impl !Send for ffi_raw
impl !Sync for ffi_raw
impl Unpin for ffi_raw
impl UnwindSafe for ffi_raw
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