#[repr(u8)]pub enum Cond {
DISABLED = 0,
LOAD_ONLY = 1,
STORE_ONLY = 2,
LOAD_AND_STORE = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
ALL = 7,
}
Variants§
DISABLED = 0
Conditional instruction tracing is disabled.
LOAD_ONLY = 1
Conditional load instructions are traced.
STORE_ONLY = 2
Conditional store instructions are traced.
LOAD_AND_STORE = 3
Conditional load and store instructions are traced.
_RESERVED_4 = 4
_RESERVED_5 = 5
_RESERVED_6 = 6
ALL = 7
All conditional instructions are traced.
Implementations§
Trait Implementations§
Source§impl Ord for Cond
impl Ord for Cond
Source§impl PartialOrd for Cond
impl PartialOrd for Cond
impl Copy for Cond
impl Eq for Cond
impl StructuralPartialEq for Cond
Auto Trait Implementations§
impl Freeze for Cond
impl RefUnwindSafe for Cond
impl Send for Cond
impl Sync for Cond
impl Unpin for Cond
impl UnwindSafe for Cond
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)