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: boolN flag.
r: u8S field: element size and element bits.
s: u8R field: rotate amount.
size: OperandSizeWas 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