pub struct RwLock<T>(/* private fields */);
Expand description
A sync::RwLock
assuming lock poisoning will never occur.
Implementations§
Source§impl<T> RwLock<T>
impl<T> RwLock<T>
Sourcepub fn read(&self) -> LockGuard<'_, RwLock<T>, RwLockReadGuard<'_, T>>
pub fn read(&self) -> LockGuard<'_, RwLock<T>, RwLockReadGuard<'_, T>>
Locks this rwlock with shared read access, blocking the current thread until it can be acquired.
See sync::RwLock::read
for more details.
§Panics
This method may panic if the calling thread already holds the read or write lock.
Sourcepub fn write(&self) -> LockGuard<'_, RwLock<T>, RwLockWriteGuard<'_, T>>
pub fn write(&self) -> LockGuard<'_, RwLock<T>, RwLockWriteGuard<'_, T>>
Locks this rwlock with exclusive write access, blocking the current thread until it can be acquired.
See sync::RwLock::write
for more details.
§Panics
This method may panic if the calling thread already holds the read or write lock.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes this rwlock, returning the underlying data.
Sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Returns a mutable reference to the underlying data.
Since this call borrows the RwLock
mutably, no actual locking needs
to take place. See sync::RwLock::get_mut
for more details.
Trait Implementations§
Source§impl<T, I> GenericOverIp<I> for RwLock<T>where
I: Ip,
T: GenericOverIp<I>,
impl<T, I> GenericOverIp<I> for RwLock<T>where
I: Ip,
T: GenericOverIp<I>,
Source§impl<T> ReadWriteLock<T> for RwLock<T>where
T: 'static,
impl<T> ReadWriteLock<T> for RwLock<T>where
T: 'static,
Source§type ReadGuard<'l> = LockGuard<'l, RwLock<T>, RwLockReadGuard<'l, T>>
type ReadGuard<'l> = LockGuard<'l, RwLock<T>, RwLockReadGuard<'l, T>>
The guard type returned when locking for reads (i.e. shared).
Source§type WriteGuard<'l> = LockGuard<'l, RwLock<T>, RwLockWriteGuard<'l, T>>
type WriteGuard<'l> = LockGuard<'l, RwLock<T>, RwLockWriteGuard<'l, T>>
The guard type returned when locking for writes (i.e. exclusive).
Source§fn read_lock(&self) -> <RwLock<T> as ReadWriteLock<T>>::ReadGuard<'_>
fn read_lock(&self) -> <RwLock<T> as ReadWriteLock<T>>::ReadGuard<'_>
Locks this lock for reading.
Source§fn write_lock(&self) -> <RwLock<T> as ReadWriteLock<T>>::WriteGuard<'_>
fn write_lock(&self) -> <RwLock<T> as ReadWriteLock<T>>::WriteGuard<'_>
Locks this lock for writing.
Auto Trait Implementations§
impl<T> !Freeze for RwLock<T>
impl<T> RefUnwindSafe for RwLock<T>
impl<T> Send for RwLock<T>where
T: Send,
impl<T> Sync for RwLock<T>
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
Source§impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
Source§impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
Source§impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
Source§fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
Send a frame. Read more
Source§impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
Source§fn handle_timer(
&mut self,
bindings_ctx: &mut BC,
dispatch: Id,
timer: <BC as TimerBindingsTypes>::UniqueTimerId,
)
fn handle_timer( &mut self, bindings_ctx: &mut BC, dispatch: Id, timer: <BC as TimerBindingsTypes>::UniqueTimerId, )
Handle a timer firing. Read more
Source§impl<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
impl<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
Source§type Data = <L as UnlockedAccessMarkerFor<T>>::Data
type Data = <L as UnlockedAccessMarkerFor<T>>::Data
The type of state being accessed.
Source§type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data
where
T: 'l
type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data where T: 'l
A guard providing read access to the data.
Source§fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
How to access the state.