pub trait OpenApiFactory {
// Required methods
fn paths(&self) -> Paths;
fn schemas(&self, schemas: &mut Vec<(String, RefOr<Schema>)>);
}
Expand description
This trait is used to unify OpenAPI items collection from types implementing this trait.