pub enum OccupiedRawEntry<'a, K, V, H, const I: usize> {
List {
list: &'a mut SmallVec<[(K, V); I]>,
index: usize,
},
Map {
this: *mut AutoMap<K, V, H, I>,
entry: RawOccupiedEntryMut<'a, K, V, H>,
},
}
Variants§
Implementations§
Source§impl<'a, K: Eq + Hash, V, H: BuildHasher, const I: usize> OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K: Eq + Hash, V, H: BuildHasher, const I: usize> OccupiedRawEntry<'a, K, V, H, I>
Source§impl<K: Eq + Hash, V, H: BuildHasher + Default, const I: usize> OccupiedRawEntry<'_, K, V, H, I>
impl<K: Eq + Hash, V, H: BuildHasher + Default, const I: usize> OccupiedRawEntry<'_, K, V, H, I>
Auto Trait Implementations§
impl<'a, K, V, H, const I: usize> Freeze for OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> RefUnwindSafe for OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> !Send for OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> !Sync for OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> Unpin for OccupiedRawEntry<'a, K, V, H, I>
impl<'a, K, V, H, const I: usize> !UnwindSafe for OccupiedRawEntry<'a, K, V, H, I>
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