pub enum FpFmt {
F32,
F64,
}Expand description
An IEEE-754 binary interchange format, for the trunc-trap classifiers.
Variants§
F32
binary32: 1 sign / 8 exponent / 23 mantissa bits.
F64
binary64: 1 sign / 11 exponent / 52 mantissa bits.
Implementations§
Trait Implementations§
impl Copy for FpFmt
impl Eq for FpFmt
impl StructuralPartialEq for FpFmt
Auto Trait Implementations§
impl Freeze for FpFmt
impl RefUnwindSafe for FpFmt
impl Send for FpFmt
impl Sync for FpFmt
impl Unpin for FpFmt
impl UnsafeUnpin for FpFmt
impl UnwindSafe for FpFmt
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.