Struct flo_state::registry::Deferred[][src]

pub struct Deferred<S, D = ()> { /* fields omitted */ }

Implementations

impl<S, D> Deferred<S, D> where
    S: Service<D>, 
[src]

pub async fn resolve(&mut self) -> Result<Addr<S>, S::Error>[src]

Trait Implementations

impl<S, D> Clone for Deferred<S, D>[src]

impl<S: Debug, D: Debug> Debug for Deferred<S, D>[src]

Auto Trait Implementations

impl<S, D = ()> !RefUnwindSafe for Deferred<S, D>

impl<S, D> Send for Deferred<S, D> where
    D: Send,
    S: Send

impl<S, D> Sync for Deferred<S, D> where
    D: Send,
    S: Send + Sync

impl<S, D> Unpin for Deferred<S, D> where
    S: Unpin

impl<S, D = ()> !UnwindSafe for Deferred<S, D>

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.