[][src]Struct pin_weak::sync::PinWeak

pub struct PinWeak<T: ?Sized>(_);

This is a safe wrapper around something that could be compared to Pin<Weak<T>>

The typical way to obtain a PinWeak is to call PinWeak::downgrade

Implementations

impl<T: ?Sized> PinWeak<T>[src]

pub fn downgrade(rc: Pin<Arc<T>>) -> Self[src]

Equivalent function to Arc ::downgrade, but taking a Pin< Arc <T>> instead.

pub fn upgrade(&self) -> Option<Pin<Arc<T>>>[src]

Equivalent function to Weak::upgrade but returning a Pin< Arc <T>> instead.

Trait Implementations

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

impl<T: Debug + ?Sized> Debug for PinWeak<T>[src]

impl<T> Default for PinWeak<T>[src]

Auto Trait Implementations

impl<T: ?Sized> Send for PinWeak<T> where
    T: Send + Sync

impl<T: ?Sized> Sync for PinWeak<T> where
    T: Send + Sync

impl<T: ?Sized> Unpin for PinWeak<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, 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.