Struct red4ext_rs::types::RwSpinLockReadGuard
source · pub struct RwSpinLockReadGuard<'a, T> { /* private fields */ }
Expand description
A read-write spin lock read guard. Permits any number of readers to access the locked data.
Trait Implementations§
source§impl<T> Deref for RwSpinLockReadGuard<'_, T>
impl<T> Deref for RwSpinLockReadGuard<'_, T>
Auto Trait Implementations§
impl<'a, T> Freeze for RwSpinLockReadGuard<'a, T>
impl<'a, T> RefUnwindSafe for RwSpinLockReadGuard<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for RwSpinLockReadGuard<'a, T>
impl<'a, T> !Sync for RwSpinLockReadGuard<'a, T>
impl<'a, T> Unpin for RwSpinLockReadGuard<'a, T>
impl<'a, T> UnwindSafe for RwSpinLockReadGuard<'a, T>where
T: RefUnwindSafe,
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