Struct hydra_dashmap::mapref::one::RefMut
source · pub struct RefMut<'a, K, V, S = RandomState> { /* private fields */ }Implementations§
source§impl<'a, K: Eq + Hash, V, S: BuildHasher> RefMut<'a, K, V, S>
impl<'a, K: Eq + Hash, V, S: BuildHasher> RefMut<'a, K, V, S>
pub fn key(&self) -> &K
pub fn value(&self) -> &V
pub fn value_mut(&mut self) -> &mut V
pub fn pair(&self) -> (&K, &V)
pub fn pair_mut(&mut self) -> (&K, &mut V)
pub fn downgrade(self) -> Ref<'a, K, V, S>
pub fn map<F, T>(self, f: F) -> MappedRefMut<'a, K, V, T, S>
pub fn try_map<F, T>(self, f: F) -> Result<MappedRefMut<'a, K, V, T, S>, Self>
Trait Implementations§
impl<'a, K: Eq + Hash + Sync, V: Sync, S: BuildHasher> Send for RefMut<'a, K, V, S>
impl<'a, K: Eq + Hash + Sync, V: Sync, S: BuildHasher> Sync for RefMut<'a, K, V, S>
Auto Trait Implementations§
impl<'a, K, V, S> Freeze for RefMut<'a, K, V, S>
impl<'a, K, V, S = RandomState> !RefUnwindSafe for RefMut<'a, K, V, S>
impl<'a, K, V, S> Unpin for RefMut<'a, K, V, S>
impl<'a, K, V, S = RandomState> !UnwindSafe for RefMut<'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
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