pub trait TagReflection {
    fn tag(&self) -> &str;
fn description(&self) -> &str; fn example(&self) -> Option<&str> { ... }
fn spec(&self) -> Option<&str> { ... } }

Required methods

Provided methods

Implementors