pub struct Set<T>(/* private fields */);
Expand description
A set in which the presence of an entry is tied to the lifetime of a RAII handle returned by the insertion.
Implementations§
Trait Implementations§
Source§impl<'a, T: Ord> IntoIterator for &'a Set<T>
impl<'a, T: Ord> IntoIterator for &'a Set<T>
Source§impl<T: Ord> IntoIterator for Set<T>
impl<T: Ord> IntoIterator for Set<T>
impl<T: Eq> Eq for Set<T>
impl<T> StructuralPartialEq for Set<T>
Auto Trait Implementations§
impl<T> Freeze for Set<T>
impl<T> RefUnwindSafe for Set<T>where
T: RefUnwindSafe,
impl<T> Send for Set<T>where
T: Send,
impl<T> Sync for Set<T>where
T: Sync,
impl<T> Unpin for Set<T>
impl<T> UnwindSafe for Set<T>where
T: RefUnwindSafe,
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