1 2 3 4 5 6 7
#[derive(Responder)] #[response(status = 200, content_type = "text/html")] pub struct ResponseOk(pub String); #[derive(Responder)] #[response(status = 400, content_type = "text/html")] pub struct BadRequest(pub String);