pub struct RefMut<'a, K, V> { /* private fields */ }
Implementations§
Source§impl<'a, K: Eq + Hash, V> RefMut<'a, K, V>
impl<'a, K: Eq + Hash, V> RefMut<'a, K, V>
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>
pub fn map<F, T>(self, f: F) -> MappedRefMut<'a, K, V, T>
pub fn try_map<F, T>(self, f: F) -> Result<MappedRefMut<'a, K, V, T>, Self>
Trait Implementations§
impl<'a, K: Eq + Hash + Sync, V: Sync> Send for RefMut<'a, K, V>
impl<'a, K: Eq + Hash + Sync, V: Sync> Sync for RefMut<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> Freeze for RefMut<'a, K, V>
impl<'a, K, V> !RefUnwindSafe for RefMut<'a, K, V>
impl<'a, K, V> Unpin for RefMut<'a, K, V>
impl<'a, K, V> !UnwindSafe for RefMut<'a, K, V>
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