pub struct BloomSet<'arena, I> { /* private fields */ }Expand description
A set of values with a bloom filter. This structure is
using a BloomMap with value type set to () internally.
Implementations§
Trait Implementations§
Source§impl<'arena, I> IntoIterator for BloomSet<'arena, I>
impl<'arena, I> IntoIterator for BloomSet<'arena, I>
impl<'arena, I: Copy> Copy for BloomSet<'arena, I>
Auto Trait Implementations§
impl<'arena, I> Freeze for BloomSet<'arena, I>
impl<'arena, I> RefUnwindSafe for BloomSet<'arena, I>where
I: RefUnwindSafe,
impl<'arena, I> Send for BloomSet<'arena, I>
impl<'arena, I> !Sync for BloomSet<'arena, I>
impl<'arena, I> Unpin for BloomSet<'arena, I>
impl<'arena, I> UnwindSafe for BloomSet<'arena, I>where
I: 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