pub struct BorrowedCell<T> { /* private fields */ }
Expand description
The container that ensures you have borrowed the LendingCell
.
Trait Implementations§
Source§impl<T> Deref for BorrowedCell<T>
impl<T> Deref for BorrowedCell<T>
Source§impl<T> DerefMut for BorrowedCell<T>
impl<T> DerefMut for BorrowedCell<T>
impl<T: Send> Send for BorrowedCell<T>
impl<T: Sync> Sync for BorrowedCell<T>
Auto Trait Implementations§
impl<T> Freeze for BorrowedCell<T>
impl<T> !RefUnwindSafe for BorrowedCell<T>
impl<T> Unpin for BorrowedCell<T>
impl<T> !UnwindSafe for BorrowedCell<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