ClientBuilder

Struct ClientBuilder 

Source
pub struct ClientBuilder { /* private fields */ }
Expand description

Builder for configuring HTTP client

Implementations§

Source§

impl ClientBuilder

Source

pub fn new() -> Self

Create a new client builder

Source

pub fn timeout(self, timeout: Duration) -> Self

Set request timeout

Source

pub fn default_header( self, name: impl AsRef<str>, value: impl AsRef<str>, ) -> Result<Self>

Add a default header for all requests

Source

pub fn avl_auth(self, token: impl Into<String>) -> Self

Set AVL Platform authentication token

Source

pub fn region(self, region: impl Into<String>) -> Self

Set preferred region for regional routing

Source

pub fn compression(self, enabled: bool) -> Self

Enable automatic compression

Source

pub fn max_redirects(self, max: usize) -> Self

Set maximum number of redirects to follow

Source

pub fn pool_max_connections(self, max: usize) -> Self

Set connection pool max connections per host

Source

pub fn pool_idle_timeout(self, timeout: Duration) -> Self

Set connection pool idle timeout

Source

pub fn pool_connection_timeout(self, timeout: Duration) -> Self

Set connection pool connection timeout

Source

pub fn pool_keep_alive(self, enabled: bool) -> Self

Enable or disable connection keep-alive

Source

pub fn build(self) -> Result<Client>

Build the client

Source

pub fn on_request<F>(self, interceptor: F) -> Self
where F: Fn(&mut RequestData) + Send + Sync + 'static,

Add a request interceptor

Source

pub fn on_response<F>(self, interceptor: F) -> Self
where F: Fn(&ResponseData) + Send + Sync + 'static,

Add a response interceptor

Trait Implementations§

Source§

impl Default for ClientBuilder

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.