pub struct RealRegUniverse {
pub regs: Vec<(RealReg, String)>,
pub allocable: usize,
pub allocable_by_class: [Option<RegClassInfo>; 5],
}Fields§
§regs: Vec<(RealReg, String)>§allocable: usize§allocable_by_class: [Option<RegClassInfo>; 5]Implementations§
Trait Implementations§
Source§impl Clone for RealRegUniverse
impl Clone for RealRegUniverse
Source§fn clone(&self) -> RealRegUniverse
fn clone(&self) -> RealRegUniverse
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 moreAuto Trait Implementations§
impl Freeze for RealRegUniverse
impl RefUnwindSafe for RealRegUniverse
impl Send for RealRegUniverse
impl Sync for RealRegUniverse
impl Unpin for RealRegUniverse
impl UnwindSafe for RealRegUniverse
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