Struct dioxus_hooks::RefMut
source · pub struct RefMut<'b, T>where
T: 'b + ?Sized,{ /* private fields */ }
Expand description
A wrapper type for a mutably borrowed value from a RefCell<T>
.
Implementations§
source§impl<'b, T> RefMut<'b, T>where
T: 'b + ?Sized,
impl<'b, T> RefMut<'b, T>where T: 'b + ?Sized,
sourcepub fn map<U, F>(orig: RefMut<'b, T>, f: F) -> RefMut<'b, U>where
F: FnOnce(&mut T) -> &mut U,
U: ?Sized,
pub fn map<U, F>(orig: RefMut<'b, T>, f: F) -> RefMut<'b, U>where F: FnOnce(&mut T) -> &mut U, U: ?Sized,
Makes a new RefMut
for a component of the borrowed data, e.g., an enum
variant.
The RefCell
is already mutably borrowed, so this cannot fail.
This is an associated function that needs to be used as
RefMut::map(...)
. A method would interfere with methods of the same
name on the contents of a RefCell
used through Deref
.
Examples
use std::cell::{RefCell, RefMut};
let c = RefCell::new((5, 'b'));
{
let b1: RefMut<'_, (u32, char)> = c.borrow_mut();
let mut b2: RefMut<'_, u32> = RefMut::map(b1, |t| &mut t.0);
assert_eq!(*b2, 5);
*b2 = 42;
}
assert_eq!(*c.borrow(), (42, 'b'));
Trait Implementations§
Auto Trait Implementations§
impl<'b, T> !RefUnwindSafe for RefMut<'b, T>
impl<'b, T> !Send for RefMut<'b, T>
impl<'b, T> !Sync for RefMut<'b, T>
impl<'b, T: ?Sized> Unpin for RefMut<'b, T>
impl<'b, T> !UnwindSafe for RefMut<'b, T>
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