[][src]Struct async_handle::Handle

pub struct Handle<T: ?Sized> { /* fields omitted */ }

Reference-counted async RwLock

Implementations

impl<T> Handle<T>[src]

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

Creates a new handle wrapping value

pub async fn read<'_, '_>(&'_ self) -> RwLockReadGuard<'_, T>[src]

Lock the contained value for reading

pub async fn write<'_, '_>(&'_ self) -> RwLockWriteGuard<'_, T>[src]

Lock the contained value for writing

pub fn try_unwrap(self) -> Result<T, Self>[src]

pub fn ptr_eq(this: &Self, other: &Self) -> bool[src]

Returns true if the two Handles point to the same allocation (in a vein similar to Arc::ptr_eq).

impl<T> Handle<T> where
    T: Clone
[src]

pub async fn cloned<'_>(&'_ self) -> Self[src]

Returns a new Handle with a clone of the value within

Trait Implementations

impl<T: ?Sized> Clone for Handle<T>[src]

impl<T> Debug for Handle<T> where
    T: Debug
[src]

impl<T> Default for Handle<T> where
    T: Default
[src]

impl<T> Display for Handle<T> where
    T: Display
[src]

impl<T: Send + ?Sized> Send for Handle<T>[src]

impl<T: Send + Sync + ?Sized> Sync for Handle<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Handle<T>

impl<T: ?Sized> Unpin for Handle<T>

impl<T> !UnwindSafe for Handle<T>

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> ToString for T where
    T: Display + ?Sized
[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.