[][src]Struct attohttpc::PreparedRequest

pub struct PreparedRequest { /* fields omitted */ }

Represents a request that's ready to be sent. You can inspect this object for information about the request.

Methods

impl PreparedRequest[src]

pub fn url(&self) -> &Url[src]

Get the URL of this request.

pub fn method(&self) -> &Method[src]

Get the method of this request.

pub fn headers(&self) -> &HeaderMap[src]

Get the headers of this request.

pub fn body(&self) -> &[u8][src]

Get the body of the request.

If no body was provided, the slice will be empty.

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

Send this request and wait for the result.

Auto Trait Implementations

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.