[][src]Struct kludgine::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> where
    T: ?Sized
[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<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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> Component for T where
    T: 'static + Send + Sync
[src]

type Storage = PackedStorage<T>

The storage type required to hold all instances of this component in a world.

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Resource for T where
    T: 'static, 
[src]

impl<T> SetParameter for T

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>,