Struct hashbrown::raw::Bucket [−][src]
pub struct Bucket<T> { /* fields omitted */ }
Expand description
A reference to a hash table bucket containing a T
.
This is usually just a pointer to the element itself. However if the element
is a ZST, then we instead track the index of the element in the table so
that erase
works properly.
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Bucket<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Bucket<T> where
T: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more