pub struct RwLock<T>(_);
Expand description
Provides interior mutability.
Uses parking_lot
crate on native targets, and atomic_refcell
on wasm32
targets.
Implementations
sourceimpl<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>
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>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more