pub trait WithOpenapi<D> {
    fn with_openapi<F>(&mut self, info: OpenapiInfo, block: F)
    where
        F: FnOnce(OpenapiRouter<'_, D>)
; }
Expand description

This trait adds the with_openapi method to gotham’s routing. It turns the default router into one that will only allow RESTful resources, but record them and generate an OpenAPI specification on request.

Required methods

Implementations on Foreign Types

Implementors