Struct crux_http::client::Client

source ·
pub struct Client { /* private fields */ }
Expand description

An HTTP client, capable of sending Requests

Users should only interact with this type from middlewares - normal crux code should make use of the Http capability type instead.

§Examples

use futures_util::future::BoxFuture;
use crux_http::middleware::{Next, Middleware};
use crux_http::{client::Client, Request, RequestBuilder, ResponseAsync, Result};
use std::time;
use std::sync::Arc;

// Fetches an authorization token prior to making a request
fn fetch_auth<'a>(mut req: Request, client: Client, next: Next<'a>) -> BoxFuture<'a, Result<ResponseAsync>> {
    Box::pin(async move {
        let auth_token = client.get("https://httpbin.org/get")
            .await?
            .body_string()
            .await?;
        req.append_header("Authorization", format!("Bearer {auth_token}"));
        next.run(req, client).await
    })
}

Implementations§

source§

impl Client

source

pub async fn send(&self, req: impl Into<Request>) -> Result<ResponseAsync>

Send a Request using this client.

source

pub async fn recv_bytes(&self, req: impl Into<Request>) -> Result<Vec<u8>>

Submit a Request and get the response body as bytes.

source

pub async fn recv_string(&self, req: impl Into<Request>) -> Result<String>

Submit a Request and get the response body as a string.

source

pub async fn recv_json<T: DeserializeOwned>( &self, req: impl Into<Request> ) -> Result<T>

Submit a Request and decode the response body from json into a struct.

source

pub async fn recv_form<T: DeserializeOwned>( &self, req: impl Into<Request> ) -> Result<T>

Submit a Request and decode the response body from form encoding into a struct.

§Errors

Any I/O error encountered while reading the body is immediately returned as an Err.

If the body cannot be interpreted as valid json for the target type T, an Err is returned.

source

pub fn get(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP GET request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn head(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP HEAD request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn post(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP POST request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn put(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP PUT request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn delete(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP DELETE request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn connect(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP CONNECT request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn options(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP OPTIONS request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn trace(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP TRACE request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn patch(&self, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform an HTTP PATCH request using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn request(&self, verb: Method, uri: impl AsRef<str>) -> RequestBuilder<()>

Perform a HTTP request with the given verb using the Client connection.

§Panics

This will panic if a malformed URL is passed.

§Errors

Returns errors from the middleware, http backend, and network sockets.

source

pub fn config(&self) -> &Config

Get the current configuration.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Self

Clones the Client.

This copies the middleware stack from the original, but shares the HttpClient and http client config of the original. Note that individual middleware in the middleware stack are still shared by reference.

1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V