Struct dioxus_hooks::Ref
source · pub struct Ref<'b, T>where
T: 'b + ?Sized,{ /* private fields */ }
Expand description
Wraps a borrowed reference to a value in a RefCell
box.
A wrapper type for an immutably borrowed value from a RefCell<T>
.
See the module-level documentation for more.
Implementations§
source§impl<'b, T> Ref<'b, T>where
T: 'b + ?Sized,
impl<'b, T> Ref<'b, T>where T: 'b + ?Sized,
sourcepub fn map<U, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, U>where
F: FnOnce(&T) -> &U,
U: ?Sized,
pub fn map<U, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, U>where F: FnOnce(&T) -> &U, U: ?Sized,
Makes a new Ref
for a component of the borrowed data.
The RefCell
is already immutably borrowed, so this cannot fail.
This is an associated function that needs to be used as Ref::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, Ref};
let c = RefCell::new((5, 'b'));
let b1: Ref<'_, (u32, char)> = c.borrow();
let b2: Ref<'_, u32> = Ref::map(b1, |t| &t.0);
assert_eq!(*b2, 5)
Trait Implementations§
Auto Trait Implementations§
impl<'b, T> !RefUnwindSafe for Ref<'b, T>
impl<'b, T> !Send for Ref<'b, T>
impl<'b, T> !Sync for Ref<'b, T>
impl<'b, T: ?Sized> Unpin for Ref<'b, T>
impl<'b, T> !UnwindSafe for Ref<'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