pub enum DivUse {
IfExists,
None,
Allowed,
Unknown(u8),
}Variants§
IfExists
Divide instructions may be used if they exist in the architecture, as indicated by CpuArch and CpuArchProfile.
None
Not allowed.
Allowed
Allowed.
Unknown(u8)
Implementations§
Trait Implementations§
source§impl PartialEq for DivUse
impl PartialEq for DivUse
impl Copy for DivUse
impl Eq for DivUse
impl StructuralPartialEq for DivUse
Auto Trait Implementations§
impl Freeze for DivUse
impl RefUnwindSafe for DivUse
impl Send for DivUse
impl Sync for DivUse
impl Unpin for DivUse
impl UnwindSafe for DivUse
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