[][src]Struct tower_http_util::service::IntoService

pub struct IntoService<T> { /* fields omitted */ }

Wraps an HttpService instance, implementing tower_service::Service.

See into_service function documentation for more details.

Trait Implementations

impl<T: Debug> Debug for IntoService<T>[src]

impl<T, ReqBody> Service<Request<ReqBody>> for IntoService<T> where
    T: HttpService<ReqBody>, 
[src]

type Response = Response<T::ResponseBody>

Responses given by the service.

type Error = T::Error

Errors produced by the service.

type Future = T::Future

The future response value.

Auto Trait Implementations

impl<T> Send for IntoService<T> where
    T: Send

impl<T> Sync for IntoService<T> where
    T: Sync

Blanket Implementations

impl<T, B1, B2> HttpService<B1> for T where
    B2: Body,
    T: Service<Request<B1>, Response = Response<B2>>, 
[src]

type ResponseBody = B2

Response payload.

type Error = <T as Service<Request<B1>>>::Error

Errors produced by the service.

type Future = <T as Service<Request<B1>>>::Future

The future response value.

fn into_service(self) -> IntoService<Self> where
    Self: Sized
[src]

Wrap the HttpService so that it implements tower_service::Service directly. Read more

fn as_service(&mut self) -> AsService<Self> where
    Self: Sized
[src]

Same as into_service but operates on an HttpService reference.

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> Erased for T