logo
pub trait Tags {
    fn register(&self, registry: &mut Registry);
fn name(&self) -> &'static str; }
Expand description

Represents a OpenAPI tags.

Required methods

Register this tag type to registry.

Gets the tag name.

Implementors