Response

Struct Response 

Source
pub struct Response<B = Bytes> { /* private fields */ }
Expand description

HTTP response with status, headers, and body.

Implementations§

Source§

impl<B> Response<B>

Source

pub fn new(status: u16, headers: HashMap<String, String>, body: B) -> Self

Creates a new response.

Source

pub const fn status(&self) -> u16

HTTP status code.

Source

pub fn headers(&self) -> &HashMap<String, String>

Response headers.

Source

pub fn header(&self, name: &str) -> Option<&str>

Single header value by name.

Source

pub const fn body(&self) -> &B

Response body.

Source

pub fn into_body(self) -> B

Consume into body.

Source

pub fn into_parts(self) -> (u16, HashMap<String, String>, B)

Consume into (status, headers, body).

Source

pub const fn is_success(&self) -> bool

Status is 2xx.

Source

pub const fn is_redirection(&self) -> bool

Status is 3xx.

Source

pub const fn is_client_error(&self) -> bool

Status is 4xx.

Source

pub const fn is_server_error(&self) -> bool

Status is 5xx.

Source

pub fn map_body<F, B2>(self, f: F) -> Response<B2>
where F: FnOnce(B) -> B2,

Transform the body with a function.

Source§

impl Response<Bytes>

Source

pub fn json<T: DeserializeOwned>(self) -> Result<T>

Deserialize the response body as JSON.

§Errors

Returns an error if deserialization fails.

Source

pub fn text(self) -> Result<String, FromUtf8Error>

Get the response body as text.

§Errors

Returns an error if the body is not valid UTF-8.

Trait Implementations§

Source§

impl<B: Clone> Clone for Response<B>

Source§

fn clone(&self) -> Response<B>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<B: Debug> Debug for Response<B>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<B> Freeze for Response<B>
where B: Freeze,

§

impl<B> RefUnwindSafe for Response<B>
where B: RefUnwindSafe,

§

impl<B> Send for Response<B>
where B: Send,

§

impl<B> Sync for Response<B>
where B: Sync,

§

impl<B> Unpin for Response<B>
where B: Unpin,

§

impl<B> UnwindSafe for Response<B>
where B: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.