Struct XmmMemImm16
pub struct XmmMemImm16(/* private fields */);Expand description
A newtype wrapper around RegMemImm.
Implementations§
§impl XmmMemImm16
impl XmmMemImm16
pub const SIZE_BITS: u32 = 16
pub const SIZE_BITS: u32 = 16
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<XmmMemImm16>
pub fn new(rmi: RegMemImm) -> Option<XmmMemImm16>
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) -> XmmMemImm16
pub fn unwrap_new(rmi: RegMemImm) -> XmmMemImm16
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 XmmMemImm16
impl Clone for XmmMemImm16
§fn clone(&self) -> XmmMemImm16
fn clone(&self) -> XmmMemImm16
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 XmmMemImm16
impl Debug for XmmMemImm16
§impl<'a> From<&'a XmmMemImm16> for &'a RegMemImm
impl<'a> From<&'a XmmMemImm16> for &'a RegMemImm
§fn from(rmi: &'a XmmMemImm16) -> &'a RegMemImm
fn from(rmi: &'a XmmMemImm16) -> &'a RegMemImm
Converts to this type from the input type.
§impl From<Xmm> for XmmMemImm16
impl From<Xmm> for XmmMemImm16
§fn from(r: Xmm) -> XmmMemImm16
fn from(r: Xmm) -> XmmMemImm16
Converts to this type from the input type.
§impl From<XmmMemImm16> for RegMemImm
impl From<XmmMemImm16> for RegMemImm
§fn from(rmi: XmmMemImm16) -> RegMemImm
fn from(rmi: XmmMemImm16) -> RegMemImm
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for XmmMemImm16
impl RefUnwindSafe for XmmMemImm16
impl Send for XmmMemImm16
impl Sync for XmmMemImm16
impl Unpin for XmmMemImm16
impl UnsafeUnpin for XmmMemImm16
impl UnwindSafe for XmmMemImm16
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