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