pub trait SymbolicTraitAccessors {
// Required methods
fn is_italic(&self) -> bool;
fn is_bold(&self) -> bool;
fn is_expanded(&self) -> bool;
fn is_condensed(&self) -> bool;
fn is_monospace(&self) -> bool;
fn is_vertical(&self) -> bool;
}