pub trait TaggedFontValue {
    // Required method
    fn tag(&self) -> FontTag;
}
Expand description

A trait for values that are labelled with a FontTag (for feature and variation settings).

Required Methods§

source

fn tag(&self) -> FontTag

The value’s tag.

Implementors§