#[repr(C)]pub union UmkaStackSlot {
pub intVal: i64,
pub uintVal: u64,
pub ptrVal: *mut c_void,
pub realVal: f64,
pub real32Val: f32,
}Fields§
§intVal: i64§uintVal: u64§ptrVal: *mut c_void§realVal: f64§real32Val: f32Trait Implementations§
Source§impl Clone for UmkaStackSlot
impl Clone for UmkaStackSlot
Source§fn clone(&self) -> UmkaStackSlot
fn clone(&self) -> UmkaStackSlot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UmkaStackSlot
Auto Trait Implementations§
impl !Send for UmkaStackSlot
impl !Sync for UmkaStackSlot
impl Freeze for UmkaStackSlot
impl RefUnwindSafe for UmkaStackSlot
impl Unpin for UmkaStackSlot
impl UnsafeUnpin for UmkaStackSlot
impl UnwindSafe for UmkaStackSlot
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