pub struct Zeroing {
pub name: &'static str,
pub signed: bool,
pub unsigned: bool,
}Expand description
One instruction that leaves behind the comparison of what it wrote against zero.
Fields§
§name: &'static strThe opcode.
signed: boolWhether a signed comparison against zero reads what it left and gets the right answer.
unsigned: boolWhether an unsigned one does.
Implementations§
Trait Implementations§
impl Copy for Zeroing
impl Eq for Zeroing
impl StructuralPartialEq for Zeroing
Auto Trait Implementations§
impl Freeze for Zeroing
impl RefUnwindSafe for Zeroing
impl Send for Zeroing
impl Sync for Zeroing
impl Unpin for Zeroing
impl UnsafeUnpin for Zeroing
impl UnwindSafe for Zeroing
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