Struct ordermap::VacantEntry
source · pub struct VacantEntry<'a, K: 'a, V: 'a, S: 'a = RandomState> {
pub(crate) map: &'a mut OrderMap<K, V, S>,
pub(crate) key: K,
pub(crate) hash: HashValue,
pub(crate) probe: usize,
}
Fields§
§map: &'a mut OrderMap<K, V, S>
§key: K
§hash: HashValue
§probe: usize
Implementations§
source§impl<'a, K, V, S> VacantEntry<'a, K, V, S>
impl<'a, K, V, S> VacantEntry<'a, K, V, S>
Auto Trait Implementations§
impl<'a, K, V, S> Freeze for VacantEntry<'a, K, V, S>where
K: Freeze,
impl<'a, K, V, S> RefUnwindSafe for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Sync for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Unpin for VacantEntry<'a, K, V, S>where
K: Unpin,
impl<'a, K, V, S = RandomState> !UnwindSafe for VacantEntry<'a, K, V, S>
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