Type Alias rustc_data_structures::sync::WriteGuard

source ·
pub type WriteGuard<'a, T> = RwLockWriteGuard<'a, RawRwLock, T>;
Expand description

RAII structure used to release the exclusive write access of a lock when dropped.

Aliased Type§

struct WriteGuard<'a, T> {
    rwlock: &'a RwLock<RawRwLock, T>,
    marker: PhantomData<(&'a mut T, GuardNoSend)>,
}

Fields§

§rwlock: &'a RwLock<RawRwLock, T>§marker: PhantomData<(&'a mut T, GuardNoSend)>

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 8 bytes