Enum Rmode
#[repr(u8)]pub enum Rmode {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Default value for FPSCR.RMode (Rounding Mode control field).
Value on reset: 0
Variants§
_00 = 0
0: Round to Nearest (RN) mode
_01 = 1
1: Round towards Plus Infinity (RP) mode.
_10 = 2
2: Round towards Minus Infinity (RM) mode.
_11 = 3
3: Round towards Zero (RZ) mode.
Trait Implementations§
impl Copy for Rmode
impl Eq for Rmode
impl IsEnum for Rmode
impl StructuralPartialEq for Rmode
Auto Trait Implementations§
impl Freeze for Rmode
impl RefUnwindSafe for Rmode
impl Send for Rmode
impl Sync for Rmode
impl Unpin for Rmode
impl UnwindSafe for Rmode
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