[][src]Struct qutex::WriteGuard

pub struct WriteGuard<T> { /* fields omitted */ }

Allows read or write access to the data contained within a lock.

Methods

impl<T> WriteGuard<T>[src]

pub fn downgrade(guard: WriteGuard<T>) -> ReadGuard<T>[src]

Converts this WriteGuard into a ReadGuard and fulfills any other pending read requests.

pub fn release(guard: WriteGuard<T>) -> QrwLock<T>[src]

Releases the lock held by this WriteGuard and returns the original QrwLock.

Trait Implementations

impl<T> Drop for WriteGuard<T>[src]

impl<T> DerefMut for WriteGuard<T>[src]

impl<T> Deref for WriteGuard<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Debug> Debug for WriteGuard<T>[src]

Auto Trait Implementations

impl<T> Send for WriteGuard<T> where
    T: Send

impl<T> Sync for WriteGuard<T> where
    T: Send

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.