Struct parking_lot::RawRwLock
source · [−]pub struct RawRwLock { /* private fields */ }
Expand description
Raw reader-writer lock type backed by the parking lot.
Trait Implementations
sourceimpl RawRwLock for RawRwLock
impl RawRwLock for RawRwLock
type GuardMarker = GuardNoSend
type GuardMarker = GuardNoSend
Marker type which determines whether a lock guard should be Send
. Use
one of the GuardSend
or GuardNoSend
helper types here. Read more
sourcefn lock_exclusive(&self)
fn lock_exclusive(&self)
Acquires an exclusive lock, blocking the current thread until it is able to do so.
sourcefn try_lock_exclusive(&self) -> bool
fn try_lock_exclusive(&self) -> bool
Attempts to acquire an exclusive lock without blocking.
sourcefn unlock_exclusive(&self)
fn unlock_exclusive(&self)
Releases an exclusive lock.
Acquires a shared lock, blocking the current thread until it is able to do so.
Attempts to acquire a shared lock without blocking.
Releases a shared lock.
sourceimpl RawRwLockDowngrade for RawRwLock
impl RawRwLockDowngrade for RawRwLock
sourceimpl RawRwLockFair for RawRwLock
impl RawRwLockFair for RawRwLock
Releases a shared lock using a fair unlock protocol.
sourcefn unlock_exclusive_fair(&self)
fn unlock_exclusive_fair(&self)
Releases an exclusive lock using a fair unlock protocol.
Temporarily yields a shared lock to a waiting thread if there is one. Read more
sourcefn bump_exclusive(&self)
fn bump_exclusive(&self)
Temporarily yields an exclusive lock to a waiting thread if there is one. Read more
sourceimpl RawRwLockRecursive for RawRwLock
impl RawRwLockRecursive for RawRwLock
Acquires a shared lock without deadlocking in case of a recursive lock.
Attempts to acquire a shared lock without deadlocking in case of a recursive lock.
sourceimpl RawRwLockRecursiveTimed for RawRwLock
impl RawRwLockRecursiveTimed for RawRwLock
sourceimpl RawRwLockTimed for RawRwLock
impl RawRwLockTimed for RawRwLock
Attempts to acquire a shared lock until a timeout is reached.
Attempts to acquire a shared lock until a timeout is reached.
sourcefn try_lock_exclusive_for(&self, timeout: Duration) -> bool
fn try_lock_exclusive_for(&self, timeout: Duration) -> bool
Attempts to acquire an exclusive lock until a timeout is reached.
sourcefn try_lock_exclusive_until(&self, timeout: Instant) -> bool
fn try_lock_exclusive_until(&self, timeout: Instant) -> bool
Attempts to acquire an exclusive lock until a timeout is reached.
sourceimpl RawRwLockUpgrade for RawRwLock
impl RawRwLockUpgrade for RawRwLock
sourcefn lock_upgradable(&self)
fn lock_upgradable(&self)
Acquires an upgradable lock, blocking the current thread until it is able to do so.
sourcefn try_lock_upgradable(&self) -> bool
fn try_lock_upgradable(&self) -> bool
Attempts to acquire an upgradable lock without blocking.
sourcefn unlock_upgradable(&self)
fn unlock_upgradable(&self)
Releases an upgradable lock.
sourcefn try_upgrade(&self) -> bool
fn try_upgrade(&self) -> bool
Attempts to upgrade an upgradable lock to an exclusive lock without blocking. Read more
sourceimpl RawRwLockUpgradeDowngrade for RawRwLock
impl RawRwLockUpgradeDowngrade for RawRwLock
sourcefn downgrade_upgradable(&self)
fn downgrade_upgradable(&self)
Downgrades an upgradable lock to a shared lock.
sourcefn downgrade_to_upgradable(&self)
fn downgrade_to_upgradable(&self)
Downgrades an exclusive lock to an upgradable lock.
sourceimpl RawRwLockUpgradeFair for RawRwLock
impl RawRwLockUpgradeFair for RawRwLock
sourcefn unlock_upgradable_fair(&self)
fn unlock_upgradable_fair(&self)
Releases an upgradable lock using a fair unlock protocol.
sourcefn bump_upgradable(&self)
fn bump_upgradable(&self)
Temporarily yields an upgradable lock to a waiting thread if there is one. Read more
sourceimpl RawRwLockUpgradeTimed for RawRwLock
impl RawRwLockUpgradeTimed for RawRwLock
sourcefn try_lock_upgradable_until(&self, timeout: Instant) -> bool
fn try_lock_upgradable_until(&self, timeout: Instant) -> bool
Attempts to acquire an upgradable lock until a timeout is reached.
sourcefn try_lock_upgradable_for(&self, timeout: Duration) -> bool
fn try_lock_upgradable_for(&self, timeout: Duration) -> bool
Attempts to acquire an upgradable lock until a timeout is reached.
sourcefn try_upgrade_until(&self, timeout: Instant) -> bool
fn try_upgrade_until(&self, timeout: Instant) -> bool
Attempts to upgrade an upgradable lock to an exclusive lock until a timeout is reached. Read more
sourcefn try_upgrade_for(&self, timeout: Duration) -> bool
fn try_upgrade_for(&self, timeout: Duration) -> bool
Attempts to upgrade an upgradable lock to an exclusive lock until a timeout is reached. Read more
Auto Trait Implementations
impl RefUnwindSafe for RawRwLock
impl Send for RawRwLock
impl Sync for RawRwLock
impl Unpin for RawRwLock
impl UnwindSafe for RawRwLock
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more