[][src]Struct tower::make::IntoService

pub struct IntoService<M, Request> { /* fields omitted */ }
This is supported on crate feature make only.

Service returned by MakeService::into_service.

See the documentation on into_service for details.

Trait Implementations

impl<M, Request> Clone for IntoService<M, Request> where
    M: Clone
[src]

impl<M, Request> Debug for IntoService<M, Request> where
    M: Debug
[src]

impl<M, S, Target, Request> Service<Target> for IntoService<M, Request> where
    M: Service<Target, Response = S>,
    S: Service<Request>, 
[src]

type Response = M::Response

Responses given by the service.

type Error = M::Error

Errors produced by the service.

type Future = M::Future

The future response value.

Auto Trait Implementations

impl<M, Request> RefUnwindSafe for IntoService<M, Request> where
    M: RefUnwindSafe,
    Request: RefUnwindSafe
[src]

impl<M, Request> Send for IntoService<M, Request> where
    M: Send,
    Request: Send
[src]

impl<M, Request> Sync for IntoService<M, Request> where
    M: Sync,
    Request: Sync
[src]

impl<M, Request> Unpin for IntoService<M, Request> where
    M: Unpin,
    Request: Unpin
[src]

impl<M, Request> UnwindSafe for IntoService<M, Request> where
    M: UnwindSafe,
    Request: UnwindSafe
[src]

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, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[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.

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