#[repr(C)]
pub union ud_lval {
pub sbyte: i8,
pub ubyte: u8,
pub sword: i16,
pub uword: u16,
pub sdword: i32,
pub udword: u32,
pub sqword: i64,
pub uqword: u64,
pub ptr: ud_lval_ptr,
}
Fields§
§sbyte: i8
§ubyte: u8
§sword: i16
§uword: u16
§sdword: i32
§udword: u32
§sqword: i64
§uqword: u64
§ptr: ud_lval_ptr
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ud_lval
impl RefUnwindSafe for ud_lval
impl Send for ud_lval
impl Sync for ud_lval
impl Unpin for ud_lval
impl UnwindSafe for ud_lval
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