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