pub struct OccupiedEntry<'b, 'a, K, V, S = RapidBuildHasher>where
K: Eq + Hash + Clone + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Send + Sync + 'static,{ /* private fields */ }Expand description
A view into an occupied entry in a RcuHashMap.
Implementations§
Source§impl<K, V, S> OccupiedEntry<'_, '_, K, V, S>
impl<K, V, S> OccupiedEntry<'_, '_, K, V, S>
Auto Trait Implementations§
impl<'b, 'a, K, V, S> Freeze for OccupiedEntry<'b, 'a, K, V, S>where
K: Freeze,
impl<'b, 'a, K, V, S = BuildHasherDefault<RapidHasher>> !RefUnwindSafe for OccupiedEntry<'b, 'a, K, V, S>
impl<'b, 'a, K, V, S = BuildHasherDefault<RapidHasher>> !Send for OccupiedEntry<'b, 'a, K, V, S>
impl<'b, 'a, K, V, S> Sync for OccupiedEntry<'b, 'a, K, V, S>
impl<'b, 'a, K, V, S> Unpin for OccupiedEntry<'b, 'a, K, V, S>where
K: Unpin,
impl<'b, 'a, K, V, S> UnsafeUnpin for OccupiedEntry<'b, 'a, K, V, S>where
K: UnsafeUnpin,
impl<'b, 'a, K, V, S = BuildHasherDefault<RapidHasher>> !UnwindSafe for OccupiedEntry<'b, '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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more