pub struct XmmMemImm(/* private fields */);
Available on crate feature
x86
only.Expand description
A newtype wrapper around RegMemImm
.
Implementations§
Source§impl XmmMemImm
impl XmmMemImm
Sourcepub fn new(rmi: RegMemImm) -> Option<Self>
pub fn new(rmi: RegMemImm) -> Option<Self>
Construct this newtype from the given RegMemImm
, or return
None
if the RegMemImm
is not a valid instance of this
newtype.
Sourcepub fn unwrap_new(rmi: RegMemImm) -> Self
pub fn unwrap_new(rmi: RegMemImm) -> Self
Like Self::new(rmi).unwrap()
but with better panic
messages in case of failure.
Sourcepub fn to_reg_mem_imm(self) -> RegMemImm
pub fn to_reg_mem_imm(self) -> RegMemImm
Convert this newtype into its underlying RegMemImm
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XmmMemImm
impl RefUnwindSafe for XmmMemImm
impl Send for XmmMemImm
impl Sync for XmmMemImm
impl Unpin for XmmMemImm
impl UnwindSafe for XmmMemImm
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