pub struct RwLockReadGuard<T: ?Sized> { /* private fields */ }Expand description
An RAII guard, much like std::sync::RwLockReadGuard. The wrapped data can
be accessed via its Deref implementation.
Trait Implementations§
Source§impl<T: ?Sized> Deref for RwLockReadGuard<T>
impl<T: ?Sized> Deref for RwLockReadGuard<T>
Auto Trait Implementations§
impl<T> Freeze for RwLockReadGuard<T>where
T: ?Sized,
impl<T> !RefUnwindSafe for RwLockReadGuard<T>
impl<T> Send for RwLockReadGuard<T>
impl<T> Sync for RwLockReadGuard<T>
impl<T> Unpin for RwLockReadGuard<T>where
T: ?Sized,
impl<T> !UnwindSafe for RwLockReadGuard<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