[][src]Struct fibers_http_server::Res

pub struct Res<T>(_);

HTTP response.

T is the type of the response body.

Methods

impl<T> Res<T>[src]

pub fn new(status: Status, body: T) -> Self[src]

Makes a new Res instance.

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

Returns the HTTP version of the response.

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

Returns the status code 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.

Trait Implementations

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

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

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

Auto Trait Implementations

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

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

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]