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