Function get_all

Source
pub fn get_all() -> impl Iterator<Item = TagHandle>
Expand description

Gets handles to all tags across all outputs.

ยงExamples

for tag in tag::get_all() {
    println!("{}", tag.name());
}