#[repr(C)]pub struct Float96 {
pub exp: [SInt16; 2],
pub man: [UInt16; 4],
}
Expand description
96 bit 68881 float: 1 sign bit, 15 exponent bits, 16 pad bits, 1 integer bit, 63 fraction bits.
Fields§
§exp: [SInt16; 2]
§man: [UInt16; 4]
Trait Implementations§
impl Copy for Float96
impl Eq for Float96
impl StructuralPartialEq for Float96
Auto Trait Implementations§
impl Freeze for Float96
impl RefUnwindSafe for Float96
impl Send for Float96
impl Sync for Float96
impl Unpin for Float96
impl UnwindSafe for Float96
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