[][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

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

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

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

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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