[−][src]Struct attohttpc::PreparedRequest
Represents a request that's ready to be sent. You can inspect this object for information about the request.
Methods
impl<B> PreparedRequest<B>
[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.
impl<B: AsRef<[u8]>> PreparedRequest<B>
[src]
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(&mut self) -> Result<Response>
[src]
Send this request and wait for the result.
Trait Implementations
Auto Trait Implementations
impl<B> Send for PreparedRequest<B> where
B: Send,
B: Send,
impl<B> Sync for PreparedRequest<B> where
B: Sync,
B: Sync,
impl<B> Unpin for PreparedRequest<B> where
B: Unpin,
B: Unpin,
impl<B> UnwindSafe for PreparedRequest<B> where
B: UnwindSafe,
B: UnwindSafe,
impl<B> RefUnwindSafe for PreparedRequest<B> where
B: RefUnwindSafe,
B: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,