pub struct EquivClass {
pub repr: usize,
pub members: Vec<usize>,
}Expand description
A single equivalence class with a canonical representative.
Fields§
§repr: usizeThe canonical (representative) element.
members: Vec<usize>All elements in this class (including the representative).
Implementations§
Auto Trait Implementations§
impl Freeze for EquivClass
impl RefUnwindSafe for EquivClass
impl Send for EquivClass
impl Sync for EquivClass
impl Unpin for EquivClass
impl UnsafeUnpin for EquivClass
impl UnwindSafe for EquivClass
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