#[repr(C)]pub union DecSingle {
pub bytes: [u8; 4],
pub shorts: [u16; 2],
pub words: [u32; 1],
}Expand description
32-bit decimal number.
Fields§
§bytes: [u8; 4]§shorts: [u16; 2]§words: [u32; 1]Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecSingle
impl RefUnwindSafe for DecSingle
impl Send for DecSingle
impl Sync for DecSingle
impl Unpin for DecSingle
impl UnsafeUnpin for DecSingle
impl UnwindSafe for DecSingle
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