pub trait WithTags {
    // Required method
    fn tags(&self) -> &[Tag];
}
Expand description

Implemented by structures that can return tags.

Required Methods§

source

fn tags(&self) -> &[Tag]

Implementors§