pub struct RcRef<T, U> { /* private fields */ }Expand description
Something that holds a std::rc::Rc strong reference,
but derefs to some component inside of it.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, U> Freeze for RcRef<T, U>
impl<T, U> RefUnwindSafe for RcRef<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> !Send for RcRef<T, U>
impl<T, U> !Sync for RcRef<T, U>
impl<T, U> Unpin for RcRef<T, U>
impl<T, U> UnwindSafe for RcRef<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
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