Struct rocket::response::content::Plain [−][src]
pub struct Plain<R>(pub R);
Expand description
Override the Content-Type
of the response to
plain text
, or
text/plain
.
Delegates the remainder of the response to the wrapped responder.
Tuple Fields
0: R
Trait Implementations
Sets the Content-Type of the response then delegates the remainder of the response to the wrapped responder.
Auto Trait Implementations
impl<R> RefUnwindSafe for Plain<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for Plain<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more