modresponder_impls;usesuper::gen::OpenApiGenerator;usesuper::Result;useokapi::openapi3::Responses;/// Implementing this trait means that any route returning the implementer can be marked with
/// `#[openapi]`, and that the route can be documented.
pubtraitOpenApiResponder<'r>: rocket::response::Responder<'r> {/// Create the responses type, which is a list of responses that can be rendered in
/// `openapi.json` format.
fnresponses(gen:&mut OpenApiGenerator)->Result<Responses>;}