[][src]Struct basws_server::Handle

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

Reference-counted async RwLock

Implementations

impl<T> Handle<T>[src]

pub fn new(value: T) -> Handle<T>[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, Handle<T>>[src]

pub fn ptr_eq(this: &Handle<T>, other: &Handle<T>) -> 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) -> Handle<T>[src]

Returns a new Handle with a clone of the value within

Trait Implementations

impl<T> 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 for Handle<T> where
    T: Send + ?Sized
[src]

impl<T> Sync for Handle<T> where
    T: Send + Sync + ?Sized
[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,