[][src]Struct httpcodec::Response

pub struct Response<T> { /* fields omitted */ }

HTTP response message.

Methods

impl<T> Response<T>[src]

pub fn new(
    version: HttpVersion,
    status: StatusCode,
    reason: ReasonPhrase,
    body: T
) -> Self
[src]

Makes a new Response instance with the given status-line components and body.

pub fn http_version(&self) -> HttpVersion[src]

Returns the HTTP version of the response.

pub fn status_code(&self) -> StatusCode[src]

Returns the status code of the response.

pub fn reason_phrase(&self) -> ReasonPhrase[src]

Returns the reason phrase of the response.

pub fn header(&self) -> Header[src]

Returns the header of the response.

pub fn header_mut(&mut self) -> HeaderMut[src]

Returns the mutable header of the response.

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

Returns a reference to the body of the response.

pub fn body_mut(&mut self) -> &mut T[src]

Returns a mutable reference to the body of the response.

pub fn map_body<U, F>(self, f: F) -> Response<U> where
    F: FnOnce(T) -> U, 
[src]

Converts the body of the response to U by using the given function.

pub fn into_body(self) -> T[src]

Takes ownership of the response, and returns its body.

pub fn take_body(self) -> (Response<()>, T)[src]

Splits the head part and the body part of the response.

Trait Implementations

impl<T: Debug> Debug for Response<T>[src]

impl<T: Display> Display for Response<T>[src]

Auto Trait Implementations

impl<T> Unpin for Response<T> where
    T: Unpin

impl<T> Send for Response<T> where
    T: Send

impl<T> Sync for Response<T> where
    T: Sync

impl<T> RefUnwindSafe for Response<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for Response<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]