Struct rocket::response::content::Json [−][src]
pub struct Json<R>(pub R);
Expand description
Override the Content-Type
of the response to
JSON
, or
application/json
.
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 Json<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for Json<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more