#[repr(u8)]pub enum TininessDetectionMode {
AfterRounding = 0,
BeforeRounding = 1,
}
Expand description
IEEE 754 tininess detection mode
Variants§
AfterRounding = 0
tininess is detected after rounding
BeforeRounding = 1
tininess is detected before rounding
Trait Implementations§
Source§impl Clone for TininessDetectionMode
impl Clone for TininessDetectionMode
Source§fn clone(&self) -> TininessDetectionMode
fn clone(&self) -> TininessDetectionMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TininessDetectionMode
impl Debug for TininessDetectionMode
Source§impl Default for TininessDetectionMode
impl Default for TininessDetectionMode
Source§fn default() -> TininessDetectionMode
fn default() -> TininessDetectionMode
Returns the “default value” for a type. Read more
Source§impl Hash for TininessDetectionMode
impl Hash for TininessDetectionMode
Source§impl PartialEq for TininessDetectionMode
impl PartialEq for TininessDetectionMode
impl Copy for TininessDetectionMode
impl Eq for TininessDetectionMode
impl StructuralPartialEq for TininessDetectionMode
Auto Trait Implementations§
impl Freeze for TininessDetectionMode
impl RefUnwindSafe for TininessDetectionMode
impl Send for TininessDetectionMode
impl Sync for TininessDetectionMode
impl Unpin for TininessDetectionMode
impl UnwindSafe for TininessDetectionMode
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