[−][src]Struct minreq::Response
An HTTP response.
Returned by Request::send.
Example
let response = minreq::get("http://example.com").send()?; println!("{}", response.as_str()?);
Fields
status_code: i32The status code of the response, eg. 404.
reason_phrase: StringThe reason phrase of the response, eg. "Not Found".
headers: HashMap<String, String>The headers of the response. The header field names (the keys) are all lowercase.
Implementations
impl Response[src]
pub fn as_str(&self) -> Result<&str, Error>[src]
Returns the body as an &str.
Errors
Returns
InvalidUtf8InBody
if the body is not UTF-8, with a description as to why the
provided slice is not UTF-8.
Example
let response = minreq::get(url).send()?; println!("{}", response.as_str()?);
pub fn as_bytes(&self) -> &[u8][src]
Returns a reference to the contained bytes of the body. If you
want the Vec<u8> itself, use
into_bytes() instead.
Example
let response = minreq::get(url).send()?; println!("{:?}", response.as_bytes());
pub fn into_bytes(self) -> Vec<u8>[src]
Turns the Response into the inner Vec<u8>, the bytes that
make up the response's body. If you just need a &[u8], use
as_bytes() instead.
Example
let response = minreq::get(url).send()?; println!("{:?}", response.into_bytes()); // This would error, as into_bytes consumes the Response: // let x = response.status_code;
Trait Implementations
impl Clone for Response[src]
impl Debug for Response[src]
impl PartialEq<Response> for Response[src]
impl StructuralPartialEq for Response[src]
Auto Trait Implementations
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
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> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut 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>,