pub struct RwLock<T> { /* private fields */ }
Expand description
Provides interior mutability.
This is a thin wrapper around parking_lot::RwLock
, except if
the feature deadlock_detection
is turned enabled, in which case
extra checks are added to detect deadlocks.
Implementations§
source§impl<T> RwLock<T>
impl<T> RwLock<T>
pub fn new(val: T) -> Self
pub fn read(&self) -> RwLockReadGuard<'_, T>
pub fn write(&self) -> RwLockWriteGuard<'_, T>
pub fn into_inner(self) -> T
Trait Implementations§
Auto Trait Implementations§
impl<T> !RefUnwindSafe for RwLock<T>
impl<T> Send for RwLock<T>where T: Send,
impl<T> Sync for RwLock<T>where T: Send + Sync,
impl<T> Unpin for RwLock<T>where T: Unpin,
impl<T> !UnwindSafe for RwLock<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