pub enum Jump {
No,
Gt,
Eq,
Ge,
Lt,
Ne,
Le,
Jump,
}
Expand description
Jump part of a C-instruction.
Format is: **** **** **** *jjj
Variants
No
No jump
Gt
Jump if comp > 0
Eq
Jump if comp == 0
Ge
Jump if comp >= 0
Lt
Jump if comp < 0
Ne
Jump if comp != 0
Le
Jump if comp <= 0
Jump
Unconditional jump
Trait Implementations
impl Copy for Jump
impl Eq for Jump
impl StructuralEq for Jump
impl StructuralPartialEq for Jump
Auto Trait Implementations
impl RefUnwindSafe for Jump
impl Send for Jump
impl Sync for Jump
impl Unpin for Jump
impl UnwindSafe for Jump
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more