Skip to main content

HashSet

Type Alias HashSet 

Source
pub type HashSet<T, S = FxBuildHasher> = HashSet<T, S>;

Aliased Type§

pub struct HashSet<T, S = FxBuildHasher> { /* private fields */ }

Trait Implementations§

Source§

impl<T, S> TryClone for HashSet<T, S>
where T: Clone + Eq + Hash, S: BuildHasher + Clone,

Source§

impl<T> TursoFromIterator<T> for HashSet<T>
where T: Eq + Hash,

Source§

fn try_from_iter<I>(iter: I) -> Result<Self, TryReserveError>
where I: IntoIterator<Item = T>,

Source§

fn try_extend<I>(&mut self, iter: I) -> Result<(), TryReserveError>
where I: IntoIterator<Item = T>,

Source§

impl<T, S> TursoHashSetExt<T> for HashSet<T, S>
where T: Eq + Hash, S: BuildHasher,

Source§

fn try_insert(&mut self, value: T) -> Result<bool, TryReserveError>

Source§

impl<T> TursoTryWithCapacityExt for HashSet<T>
where T: Eq + Hash,