pub struct f16(/* private fields */);Expand description
IEEE 754 binary16 half-precision floating-point type.
Format: 1 sign bit, 5 exponent bits (bias 15), 10 mantissa bits.
Implementations§
Trait Implementations§
impl Copy for f16
impl Eq for f16
impl StructuralPartialEq for f16
Auto Trait Implementations§
impl Freeze for f16
impl RefUnwindSafe for f16
impl Send for f16
impl Sync for f16
impl Unpin for f16
impl UnsafeUnpin for f16
impl UnwindSafe for f16
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