Struct reqwest::Request

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

A request which can be executed with Client::execute().

Implementations§

source§

impl Request

source

pub fn new(method: Method, url: Url) -> Self

Constructs a new request.

source

pub fn method(&self) -> &Method

Get the method.

source

pub fn method_mut(&mut self) -> &mut Method

Get a mutable reference to the method.

source

pub fn url(&self) -> &Url

Get the url.

source

pub fn url_mut(&mut self) -> &mut Url

Get a mutable reference to the url.

source

pub fn headers(&self) -> &HeaderMap

Get the headers.

source

pub fn headers_mut(&mut self) -> &mut HeaderMap

Get a mutable reference to the headers.

source

pub fn body(&self) -> Option<&Body>

Get the body.

source

pub fn body_mut(&mut self) -> &mut Option<Body>

Get a mutable reference to the body.

source

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

Attempts to clone the Request.

None is returned if a body is which can not be cloned.

Trait Implementations§

source§

impl Debug for Request

source§

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

Formats the value using the given formatter. Read more
source§

impl<T> TryFrom<Request<T>> for Request
where T: Into<Body>,

§

type Error = Error

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

fn try_from(req: HttpRequest<T>) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Request> for Request<Body>

§

type Error = Error

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

fn try_from(req: Request) -> Result<Self>

Performs the conversion.

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

§

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.