Struct Response

Source
pub struct Response<'s> {
    pub status: Status,
    pub version: Version,
    pub headers: HashMap<String, String>,
    /* private fields */
}
Expand description

A HTTP response for the server to reply to the client

Fields§

§status: Status

The HTTP status code of the response

§version: Version

The HTTP version of the response

§headers: HashMap<String, String>

A type alias of a Hashmap containing the headers of the response

Implementations§

Source§

impl<'s> Response<'s>

Source

pub fn new(parent: &'s mut Connection) -> Self

Create a new Response

Source

pub fn status(&mut self, status: Status)

CHange the Status of the response

Source

pub fn send<S>(self, message: S)
where S: Into<String>,

Send the response along with a message (consumes the response)

Source

pub fn end(self)

Send an empty response (consumes it)

Auto Trait Implementations§

§

impl<'s> Freeze for Response<'s>

§

impl<'s> !RefUnwindSafe for Response<'s>

§

impl<'s> Send for Response<'s>

§

impl<'s> Sync for Response<'s>

§

impl<'s> Unpin for Response<'s>

§

impl<'s> !UnwindSafe for Response<'s>

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> 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, 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.