pub struct UnusedRegisterStackInfo<R: Register> { /* private fields */ }
Expand description
Type for architrectures that do not use register stacks. Will panic if accessed as a register stack.
Trait Implementations§
source§impl<R: Clone + Register> Clone for UnusedRegisterStackInfo<R>
impl<R: Clone + Register> Clone for UnusedRegisterStackInfo<R>
source§fn clone(&self) -> UnusedRegisterStackInfo<R>
fn clone(&self) -> UnusedRegisterStackInfo<R>
Returns a copy 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 moresource§impl<R: Register> RegisterStackInfo for UnusedRegisterStackInfo<R>
impl<R: Register> RegisterStackInfo for UnusedRegisterStackInfo<R>
type RegStackType = UnusedRegisterStack<R>
type RegType = R
type RegInfoType = <R as Register>::InfoType
fn storage_regs(&self) -> (Self::RegType, usize)
fn top_relative_regs(&self) -> Option<(Self::RegType, usize)>
fn stack_top_reg(&self) -> Self::RegType
impl<R: Copy + Register> Copy for UnusedRegisterStackInfo<R>
impl<R: Eq + Register> Eq for UnusedRegisterStackInfo<R>
impl<R: Register> StructuralPartialEq for UnusedRegisterStackInfo<R>
Auto Trait Implementations§
impl<R> Freeze for UnusedRegisterStackInfo<R>
impl<R> RefUnwindSafe for UnusedRegisterStackInfo<R>where
R: RefUnwindSafe,
impl<R> Send for UnusedRegisterStackInfo<R>where
R: Send,
impl<R> Sync for UnusedRegisterStackInfo<R>where
R: Sync,
impl<R> Unpin for UnusedRegisterStackInfo<R>where
R: Unpin,
impl<R> UnwindSafe for UnusedRegisterStackInfo<R>where
R: UnwindSafe,
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