Struct lock_api::ArcRwLockWriteGuard

source ·
pub struct ArcRwLockWriteGuard<R: RawRwLock, T: ?Sized> { /* private fields */ }
Available on crate feature arc_lock only.
Expand description

An RAII rwlock guard returned by the Arc locking operations on RwLock. This is similar to the RwLockWriteGuard struct, except instead of using a reference to unlock the RwLock it uses an Arc<RwLock>. This has several advantages, most notably that it has an 'static lifetime.

Implementations§

source§

impl<R: RawRwLock, T: ?Sized> ArcRwLockWriteGuard<R, T>

source

pub fn rwlock(s: &Self) -> &Arc<RwLock<R, T>>

Returns a reference to the rwlock, contained in its Arc.

source

pub fn unlocked<F, U>(s: &mut Self, f: F) -> U
where F: FnOnce() -> U,

Temporarily unlocks the RwLock to execute the given function.

This is functionally equivalent to the unlocked method on RwLockWriteGuard.

source§

impl<R: RawRwLockDowngrade, T: ?Sized> ArcRwLockWriteGuard<R, T>

source

pub fn downgrade(s: Self) -> ArcRwLockReadGuard<R, T>

Atomically downgrades a write lock into a read lock without allowing any writers to take exclusive access of the lock in the meantime.

This is functionally equivalent to the downgrade method on RwLockWriteGuard.

source§

impl<R: RawRwLockUpgradeDowngrade, T: ?Sized> ArcRwLockWriteGuard<R, T>

source

pub fn downgrade_to_upgradable(s: Self) -> ArcRwLockUpgradableReadGuard<R, T>

Atomically downgrades a write lock into an upgradable read lock without allowing any writers to take exclusive access of the lock in the meantime.

This is functionally identical to the downgrade_to_upgradable method on RwLockWriteGuard.

source§

impl<R: RawRwLockFair, T: ?Sized> ArcRwLockWriteGuard<R, T>

source

pub fn unlock_fair(s: Self)

Unlocks the RwLock using a fair unlock protocol.

This is functionally equivalent to the unlock_fair method on RwLockWriteGuard.

source

pub fn unlocked_fair<F, U>(s: &mut Self, f: F) -> U
where F: FnOnce() -> U,

Temporarily unlocks the RwLock to execute the given function.

This is functionally equivalent to the unlocked_fair method on RwLockWriteGuard.

source

pub fn bump(s: &mut Self)

Temporarily yields the RwLock to a waiting thread if there is one.

This method is functionally equivalent to the bump method on RwLockWriteGuard.

Trait Implementations§

source§

impl<R: RawRwLock, T: Debug + ?Sized> Debug for ArcRwLockWriteGuard<R, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<R: RawRwLock, T: ?Sized> Deref for ArcRwLockWriteGuard<R, T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.
source§

impl<R: RawRwLock, T: ?Sized> DerefMut for ArcRwLockWriteGuard<R, T>

source§

fn deref_mut(&mut self) -> &mut T

Mutably dereferences the value.
source§

impl<R: RawRwLock, T: Display + ?Sized> Display for ArcRwLockWriteGuard<R, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<R: RawRwLock, T: ?Sized> Drop for ArcRwLockWriteGuard<R, T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<R, T> Freeze for ArcRwLockWriteGuard<R, T>
where T: ?Sized,

§

impl<R, T> !RefUnwindSafe for ArcRwLockWriteGuard<R, T>

§

impl<R, T> Send for ArcRwLockWriteGuard<R, T>
where <R as RawRwLock>::GuardMarker: Send, R: Sync + Send, T: Send + Sync + ?Sized,

§

impl<R, T> Sync for ArcRwLockWriteGuard<R, T>
where <R as RawRwLock>::GuardMarker: Sync, R: Sync + Send, T: Send + Sync + ?Sized,

§

impl<R, T> Unpin for ArcRwLockWriteGuard<R, T>
where <R as RawRwLock>::GuardMarker: Unpin, T: ?Sized,

§

impl<R, T> !UnwindSafe for ArcRwLockWriteGuard<R, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Erased for T