pub struct Ref<'b, T: ?Sized + 'b> { /* 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: ?Sized + 'b> Ref<'b, T>
impl<'b, T: ?Sized + 'b> Ref<'b, T>
Sourcepub fn map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, U>
pub fn map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, U>
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> Freeze for Ref<'b, T>where
T: ?Sized,
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> Unpin for Ref<'b, T>where
T: ?Sized,
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