Struct style::shared_lock::Locked
source · pub struct Locked<T> {
shared_lock: SharedRwLock,
data: UnsafeCell<T>,
}
Expand description
Data protect by a shared lock.
Fields§
§data: UnsafeCell<T>
Implementations§
source§impl<T> Locked<T>
impl<T> Locked<T>
fn same_lock_as(&self, lock: &SharedRwLock) -> bool
sourcepub fn read_with<'a>(&'a self, guard: &'a SharedRwLockReadGuard<'_>) -> &'a T
pub fn read_with<'a>(&'a self, guard: &'a SharedRwLockReadGuard<'_>) -> &'a T
Access the data for reading.
sourcepub fn write_with<'a>(
&'a self,
guard: &'a mut SharedRwLockWriteGuard<'_>
) -> &'a mut T
pub fn write_with<'a>(
&'a self,
guard: &'a mut SharedRwLockWriteGuard<'_>
) -> &'a mut T
Access the data for writing.
Trait Implementations§
impl<T: Send> Send for Locked<T>
impl<T: Send + Sync> Sync for Locked<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Locked<T>
impl<T> Unpin for Locked<T>where
T: Unpin,
impl<T> !UnwindSafe for Locked<T>
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> MaybeBoxed<Box<T, Global>> for T
impl<T> MaybeBoxed<Box<T, Global>> for T
source§fn maybe_boxed(self) -> Box<T, Global>
fn maybe_boxed(self) -> Box<T, Global>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert