Struct GprMemImm
pub struct GprMemImm(/* private fields */);
Expand description
A newtype wrapper around RegMemImm
.
Implementations§
§impl GprMemImm
impl GprMemImm
pub fn new(rmi: RegMemImm) -> Option<GprMemImm>
pub fn new(rmi: RegMemImm) -> Option<GprMemImm>
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) -> GprMemImm
pub fn unwrap_new(rmi: RegMemImm) -> GprMemImm
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§
Auto Trait Implementations§
impl Freeze for GprMemImm
impl RefUnwindSafe for GprMemImm
impl Send for GprMemImm
impl Sync for GprMemImm
impl Unpin for GprMemImm
impl UnwindSafe for GprMemImm
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)