[][src]Struct tower::make::AsService

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

Service returned by MakeService::as_service.

See the documentation on as_service for details.

Trait Implementations

impl<M, Request> Debug for AsService<'_, M, Request> where
    M: Debug
[src]

impl<M, S, Target, Request> Service<Target> for AsService<'_, 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<'a, M, Request> RefUnwindSafe for AsService<'a, M, Request> where
    M: RefUnwindSafe,
    Request: RefUnwindSafe
[src]

impl<'a, M, Request> Send for AsService<'a, M, Request> where
    M: Send,
    Request: Send
[src]

impl<'a, M, Request> Sync for AsService<'a, M, Request> where
    M: Sync,
    Request: Sync
[src]

impl<'a, M, Request> Unpin for AsService<'a, M, Request> where
    Request: Unpin
[src]

impl<'a, M, Request> !UnwindSafe for AsService<'a, M, Request>[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, 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>,