[][src]Struct future_parking_lot::rwlock::write::FutureWrite

pub struct FutureWrite<'a, R, T> where
    R: RawRwLock + 'a,
    T: 'a, 
{ /* fields omitted */ }

Wrapper to write into RwLock in Future-style

Trait Implementations

impl<'a, R, T> Future for FutureWrite<'a, R, T> where
    R: RawRwLock + 'a,
    T: 'a, 
[src]

type Output = RwLockWriteGuard<'a, FutureRawRwLock<R>, T>

The type of value produced on completion.

Auto Trait Implementations

impl<'a, R, T> Send for FutureWrite<'a, R, T> where
    R: Send + Sync,
    T: Send + Sync

impl<'a, R, T> Unpin for FutureWrite<'a, R, T> where
    R: Unpin,
    T: Unpin

impl<'a, R, T> Sync for FutureWrite<'a, R, T> where
    R: Sync,
    T: Send + Sync

impl<'a, R, T> !UnwindSafe for FutureWrite<'a, R, T>

impl<'a, R, T> !RefUnwindSafe for FutureWrite<'a, R, T>

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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