[][src]Struct minreq::Request

pub struct Request { /* fields omitted */ }

An HTTP request.

Methods

impl Request[src]

pub fn new<T: Into<URL>>(method: Method, url: T) -> Request[src]

Creates a new HTTP Request.

This is only the request's data, it is not sent yet. For sending the request, see send.

pub fn with_header<T: Into<String>, U: Into<String>>(
    self,
    key: T,
    value: U
) -> Request
[src]

Adds a header to the request this is called on. Use this function to add headers to your requests.

pub fn with_body<T: Into<String>>(self, body: T) -> Request[src]

Sets the request body.

pub fn with_timeout(self, timeout: u64) -> Request[src]

Sets the request timeout.

pub fn send(self) -> Result<Response, Error>[src]

Sends this request to the host.

Auto Trait Implementations

impl Send for Request

impl Sync for Request

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.