struct WeakInner<'a> {
weak: &'a Cell<usize>,
strong: &'a Cell<usize>,
}
Expand description
Helper type to allow accessing the reference counts without making any assertions about the data field.
Fields§
§weak: &'a Cell<usize>
§strong: &'a Cell<usize>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for WeakInner<'a>
impl<'a> !Send for WeakInner<'a>
impl<'a> !Sync for WeakInner<'a>
impl<'a> Unpin for WeakInner<'a>
impl<'a> !UnwindSafe for WeakInner<'a>
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