pub struct PRegSet { /* private fields */ }
Expand description
A physical register set. Used to represent clobbers efficiently.
The set is Copy
and is guaranteed to have constant, and small,
size, as it is based on a bitset internally.
Implementations§
Trait Implementations§
source§impl IntoIterator for PRegSet
impl IntoIterator for PRegSet
source§impl Ord for PRegSet
impl Ord for PRegSet
source§impl PartialEq<PRegSet> for PRegSet
impl PartialEq<PRegSet> for PRegSet
source§impl PartialOrd<PRegSet> for PRegSet
impl PartialOrd<PRegSet> for PRegSet
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for PRegSet
impl Eq for PRegSet
impl StructuralEq for PRegSet
impl StructuralPartialEq for PRegSet
Auto Trait Implementations§
impl RefUnwindSafe for PRegSet
impl Send for PRegSet
impl Sync for PRegSet
impl Unpin for PRegSet
impl UnwindSafe for PRegSet
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