[][src]Struct tower_spawn_ready::future::BackgroundReady

pub struct BackgroundReady<T, Request> { /* fields omitted */ }

Drives a service to readiness.

Trait Implementations

impl<T, Request> Unpin for BackgroundReady<T, Request> where
    __UnpinStructBackgroundReady<T, Request>: Unpin
[src]

impl<T, Request> Future for BackgroundReady<T, Request> where
    T: Service<Request>,
    T::Error: Into<Box<dyn Error + Send + Sync>>, 
[src]

type Output = ()

The type of value produced on completion.

Auto Trait Implementations

impl<T, Request> Sync for BackgroundReady<T, Request> where
    Request: Sync,
    T: Send + Sync

impl<T, Request> Send for BackgroundReady<T, Request> where
    Request: Send,
    T: Send

impl<T, Request> !UnwindSafe for BackgroundReady<T, Request>

impl<T, Request> !RefUnwindSafe for BackgroundReady<T, Request>

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]