Struct uplock::RwLock[][src]

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

Implementations

impl<T> RwLock<T>[src]

A futures-aware version of std::sync::RwLock.

pub fn new(value: T) -> RwLock<T>[src]

Construct a new RwLock with the given value.

pub fn try_read(&self) -> Option<RwLockReadGuard<T>>[src]

Return a read lock synchronously if possible, otherwise None.

pub fn read(&self) -> RwLockReadFuture<T>

Notable traits for RwLockReadFuture<T>

impl<T> Future for RwLockReadFuture<T> type Output = RwLockReadGuard<T>;
[src]

Return a read lock asynchronously.

pub fn try_write(&self) -> Option<RwLockWriteGuard<T>>[src]

Return a write lock synchronously if possible, otherwise None.

pub fn write(&self) -> RwLockWriteFuture<T>

Notable traits for RwLockWriteFuture<T>

impl<T> Future for RwLockWriteFuture<T> type Output = RwLockWriteGuard<T>;
[src]

Return a write lock asynchronously.

pub fn ref_count(&self) -> usize[src]

Return the current number of references to this RwLock.

Note that it is possible for this value to change at any time, including between calling ref_count and acting on the result.

Trait Implementations

impl<T> Clone for RwLock<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for RwLock<T>[src]

impl<T> Send for RwLock<T> where
    T: Send
[src]

impl<T> Sync for RwLock<T> where
    T: Send
[src]

impl<T> Unpin for RwLock<T>[src]

impl<T> UnwindSafe for RwLock<T>[src]

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.