[−][src]Struct tower_hyper::Connection
The connection provided from hyper
This provides an interface for DirectService that will
drive the inner service via poll_service and can send
requests via call.
Trait Implementations
impl<B: Debug> Debug for Connection<B> where
B: HttpBody, [src]
B: HttpBody,
impl<B> Service<Request<B>> for Connection<B> where
B: HttpBody + Send + 'static,
B::Data: Send,
B::Error: Into<Box<dyn Error + Send + Sync>>, [src]
B: HttpBody + Send + 'static,
B::Data: Send,
B::Error: Into<Box<dyn Error + Send + Sync>>,
Auto Trait Implementations
impl<B> Send for Connection<B> where
B: Send,
B: Send,
impl<B> Sync for Connection<B> where
B: Send,
B: Send,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Erased for T
impl<T, B1, B2> HttpService<B1> for T where
B2: Body,
T: Service<Request<B1>, Response = Response<B2>>, [src]
B2: Body,
T: Service<Request<B1>, Response = Response<B2>>,
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 poll_ready(&mut self) -> Result<Async<()>, <T as HttpService<B1>>::Error>[src]
fn call(&mut self, request: Request<B1>) -> <T as HttpService<B1>>::Future[src]
fn into_service(self) -> IntoService<Self>[src]
Wrap the HttpService so that it implements tower_service::Service directly. Read more
fn as_service(&mut self) -> AsService<Self>[src]
Same as into_service but operates on an HttpService reference.