pub struct DisjointSets { /* private fields */ }
Expand description
Represents a union of disjoint sets. Each set’s elements are arranged in a tree, whose root is the set’s representative.
Implementations§
Auto Trait Implementations§
impl Freeze for DisjointSets
impl RefUnwindSafe for DisjointSets
impl Send for DisjointSets
impl Sync for DisjointSets
impl Unpin for DisjointSets
impl UnwindSafe for DisjointSets
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