Struct hyper::client::conn::SendRequest [−][src]
The sender side of an established connection.
Implementations
impl<B> SendRequest<B>
[src]
pub fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<()>>
[src]
Polls to determine whether this sender can be used yet for a request.
If the associated connection is closed, this returns an Error.
impl<B> SendRequest<B> where
B: HttpBody + 'static,
[src]
B: HttpBody + 'static,
pub fn send_request(&mut self, req: Request<B>) -> ResponseFutureⓘNotable traits for ResponseFuture
impl Future for ResponseFuture type Output = Result<Response<Body>>;
[src]
Notable traits for ResponseFuture
impl Future for ResponseFuture type Output = Result<Response<Body>>;
Sends a Request
on the associated connection.
Returns a future that if successful, yields the Response
.
Note
There are some key differences in what automatic things the Client
does for you that will not be done here:
Client
requires absolute-formUri
s, since the scheme and authority are needed to connect. They aren’t required here.- Since the
Client
requires absolute-formUri
s, it can add theHost
header based on it. You must add aHost
header yourself before calling this method. - Since absolute-form
Uri
s are not required, if received, they will be serialized as-is.
Example
use hyper::Request; // build a Request let req = Request::builder() .uri("/foo/bar") .header(HOST, "hyper.rs") .body(Body::empty()) .unwrap(); // send it and await a Response let res = tx.send_request(req).await?; // assert the Response assert!(res.status().is_success());
Trait Implementations
impl<B> Debug for SendRequest<B>
[src]
impl<B> Service<Request<B>> for SendRequest<B> where
B: HttpBody + 'static,
[src]
B: HttpBody + 'static,
type Response = Response<Body>
Responses given by the service.
type Error = Error
Errors produced by the service.
type Future = ResponseFuture
The future response value.
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
[src]
fn call(&mut self, req: Request<B>) -> Self::Future
[src]
Auto Trait Implementations
impl<B> !RefUnwindSafe for SendRequest<B>
impl<B> Send for SendRequest<B> where
B: Send,
B: Send,
impl<B> Sync for SendRequest<B> where
B: Send,
B: Send,
impl<B> Unpin for SendRequest<B>
impl<B> !UnwindSafe for SendRequest<B>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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.
pub 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>,