Struct XmmMemAlignedImm8
pub struct XmmMemAlignedImm8(/* private fields */);Expand description
A newtype wrapper around RegMemImm.
Implementations§
§impl XmmMemAlignedImm8
impl XmmMemAlignedImm8
pub const SIZE_BITS: u32 = 8
pub const SIZE_BITS: u32 = 8
The bit width of the value this operand holds. This is
a type-level distinction only; the underlying
RegMemImm does not record the width.
pub fn new(rmi: RegMemImm) -> Option<XmmMemAlignedImm8>
pub fn new(rmi: RegMemImm) -> Option<XmmMemAlignedImm8>
Construct this newtype from the given RegMemImm, or return
None if the RegMemImm is not a valid instance of this
newtype.
pub fn unwrap_new(rmi: RegMemImm) -> XmmMemAlignedImm8
pub fn unwrap_new(rmi: RegMemImm) -> XmmMemAlignedImm8
Like Self::new(rmi).unwrap() but with better panic
messages in case of failure.
pub fn to_reg_mem_imm(self) -> RegMemImm
pub fn to_reg_mem_imm(self) -> RegMemImm
Convert this newtype into its underlying RegMemImm.
Trait Implementations§
§impl Clone for XmmMemAlignedImm8
impl Clone for XmmMemAlignedImm8
§fn clone(&self) -> XmmMemAlignedImm8
fn clone(&self) -> XmmMemAlignedImm8
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for XmmMemAlignedImm8
impl Debug for XmmMemAlignedImm8
§impl<'a> From<&'a XmmMemAlignedImm8> for &'a RegMemImm
impl<'a> From<&'a XmmMemAlignedImm8> for &'a RegMemImm
§fn from(rmi: &'a XmmMemAlignedImm8) -> &'a RegMemImm
fn from(rmi: &'a XmmMemAlignedImm8) -> &'a RegMemImm
Converts to this type from the input type.
§impl From<Xmm> for XmmMemAlignedImm8
impl From<Xmm> for XmmMemAlignedImm8
§fn from(r: Xmm) -> XmmMemAlignedImm8
fn from(r: Xmm) -> XmmMemAlignedImm8
Converts to this type from the input type.
§impl From<XmmMemAlignedImm8> for RegMemImm
impl From<XmmMemAlignedImm8> for RegMemImm
§fn from(rmi: XmmMemAlignedImm8) -> RegMemImm
fn from(rmi: XmmMemAlignedImm8) -> RegMemImm
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for XmmMemAlignedImm8
impl RefUnwindSafe for XmmMemAlignedImm8
impl Send for XmmMemAlignedImm8
impl Sync for XmmMemAlignedImm8
impl Unpin for XmmMemAlignedImm8
impl UnsafeUnpin for XmmMemAlignedImm8
impl UnwindSafe for XmmMemAlignedImm8
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