Struct rocket::response::content::Css
[−]
[src]
pub struct Css<R>(pub R);
Override the Content-Type of the response to
, or
.
Delagates the remainder of the response to the wrapped responder.
Trait Implementations
impl<R: Debug> Debug for Css<R>[src]
impl<R: Clone> Clone for Css<R>[src]
fn clone(&self) -> Css<R>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<R: PartialEq> PartialEq for Css<R>[src]
fn eq(&self, __arg_0: &Css<R>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Css<R>) -> bool[src]
This method tests for !=.
impl<'r, R: Responder<'r>> Responder<'r> for Css<R>[src]
Sets the Content-Type of the response then delegates the remainder of the response to the wrapped responder.