pub struct Response {
pub status_code: i32,
pub reason_phrase: String,
pub headers: HashMap<String, String>,
/* private fields */
}
Expand description
An HTTP response.
Returned by Request::send
.
§Example
let response = tinyget::get("http://example.com").send()?;
println!("{}", response.as_str()?);
Fields§
§status_code: i32
The status code of the response, eg. 404.
reason_phrase: String
The 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§
Source§impl Response
impl Response
Sourcepub fn as_str(&self) -> Result<&str, Error>
pub fn as_str(&self) -> Result<&str, Error>
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 = tinyget::get(url).send()?;
println!("{}", response.as_str()?);
Sourcepub fn as_bytes(&self) -> &[u8] ⓘ
pub fn as_bytes(&self) -> &[u8] ⓘ
Returns a reference to the contained bytes of the body. If you
want the Vec<u8>
itself, use
into_bytes()
instead.
§Example
let response = tinyget::get(url).send()?;
println!("{:?}", response.as_bytes());
Sourcepub fn into_bytes(self) -> Vec<u8> ⓘ
pub fn into_bytes(self) -> Vec<u8> ⓘ
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 = tinyget::get(url).send()?;
println!("{:?}", response.into_bytes());
// This would error, as into_bytes consumes the Response:
// let x = response.status_code;
Trait Implementations§
impl StructuralPartialEq for Response
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more