pub enum Entry<K, V> {
Leaf(HashedKey, K, V),
LeafMany(HashedKey, Collision<K, V>),
SubNode(Node<K, V>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for Entry<K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
impl<K, V> Send for Entry<K, V>where K: Send + Sync, V: Send + Sync,
impl<K, V> Sync for Entry<K, V>where K: Send + Sync, V: Send + Sync,
impl<K, V> Unpin for Entry<K, V>where K: Unpin, V: Unpin,
impl<K, V> UnwindSafe for Entry<K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + 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