pub struct RequestBuilder { /* private fields */ }
Expand description

This is a wrapper around reqwest::RequestBuilder exposing the same API.

Implementations§

source§

impl RequestBuilder

source

pub fn header<K, V>(self, key: K, value: V) -> Selfwhere HeaderName: TryFrom<K>, <HeaderName as TryFrom<K>>::Error: Into<Error>, HeaderValue: TryFrom<V>, <HeaderValue as TryFrom<V>>::Error: Into<Error>,

source

pub fn headers(self, headers: HeaderMap) -> Self

source

pub fn version(self, version: Version) -> Self

source

pub fn basic_auth<U, P>(self, username: U, password: Option<P>) -> Selfwhere U: Display, P: Display,

source

pub fn bearer_auth<T>(self, token: T) -> Selfwhere T: Display,

source

pub fn body<T: Into<Body>>(self, body: T) -> Self

source

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

source

pub fn multipart(self, multipart: Form) -> Self

source

pub fn query<T: Serialize + ?Sized>(self, query: &T) -> Self

source

pub fn form<T: Serialize + ?Sized>(self, form: &T) -> Self

source

pub fn json<T: Serialize + ?Sized>(self, json: &T) -> Self

source

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

source

pub fn with_extension<T: Send + Sync + 'static>(self, extension: T) -> Self

Inserts the extension into this request builder

source

pub fn extensions(&mut self) -> &mut Extensions

Returns a mutable reference to the internal set of extensions for this request

source

pub async fn send(self) -> Result<Response>

source

pub fn try_clone(&self) -> Option<Self>

Attempt to clone the RequestBuilder.

None is returned if the RequestBuilder can not be cloned, i.e. if the request body is a stream.

Extensions

Note that extensions are not preserved through cloning.

Trait Implementations§

source§

impl Debug for RequestBuilder

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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 Twhere 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 Twhere 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<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more