pub struct Connect<C, B, T> { /* private fields */ }
Expand description
Creates a connection via SendRequest
.
This accepts a hyper::client::conn::Builder
and provides
a MakeService
implementation to create connections from some
target T
.
Implementations§
Trait Implementations§
source§impl<C, B, T> Service<T> for Connect<C, B, T>
impl<C, B, T> Service<T> for Connect<C, B, T>
§type Response = SendRequest<B>
type Response = SendRequest<B>
Responses given by the service.
§type Future = Pin<Box<dyn Future<Output = Result<<Connect<C, B, T> as Service<T>>::Response, <Connect<C, B, T> as Service<T>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<Connect<C, B, T> as Service<T>>::Response, <Connect<C, B, T> as Service<T>>::Error>> + Send>>
The future response value.
Auto Trait Implementations§
impl<C, B, T> Freeze for Connect<C, B, T>where
C: Freeze,
impl<C, B, T> !RefUnwindSafe for Connect<C, B, T>
impl<C, B, T> Send for Connect<C, B, T>where
C: Send,
impl<C, B, T> Sync for Connect<C, B, T>where
C: Sync,
impl<C, B, T> Unpin for Connect<C, B, T>where
C: Unpin,
impl<C, B, T> !UnwindSafe for Connect<C, B, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more