pub struct ImmLogic {
pub n: bool,
pub r: u8,
pub s: u8,
pub size: OperandSize,
/* private fields */
}
Available on crate feature
arm64
only.Expand description
An immediate for logical instructions.
Fields§
§n: bool
N
flag.
r: u8
S
field: element size and element bits.
s: u8
R
field: rotate amount.
size: OperandSize
Was this constructed for a 32-bit or 64-bit instruction?
Implementations§
Trait Implementations§
impl Copy for ImmLogic
impl StructuralPartialEq for ImmLogic
Auto Trait Implementations§
impl Freeze for ImmLogic
impl RefUnwindSafe for ImmLogic
impl Send for ImmLogic
impl Sync for ImmLogic
impl Unpin for ImmLogic
impl UnwindSafe for ImmLogic
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