pub struct HashSetGenerator<T, G> { /* private fields */ }Expand description
Generator for HashSet collections
Implementations§
Trait Implementations§
Source§impl<T: Clone, G: Clone> Clone for HashSetGenerator<T, G>
impl<T: Clone, G: Clone> Clone for HashSetGenerator<T, G>
Source§fn clone(&self) -> HashSetGenerator<T, G>
fn clone(&self) -> HashSetGenerator<T, G>
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<T, G> Freeze for HashSetGenerator<T, G>where
G: Freeze,
impl<T, G> RefUnwindSafe for HashSetGenerator<T, G>where
G: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, G> Send for HashSetGenerator<T, G>
impl<T, G> Sync for HashSetGenerator<T, G>
impl<T, G> Unpin for HashSetGenerator<T, G>
impl<T, G> UnwindSafe for HashSetGenerator<T, G>where
G: UnwindSafe,
T: UnwindSafe,
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