pub trait Style {
    fn subject(&self) -> &str;
fn body(&self) -> Option<&str>;
fn type_(&self) -> Option<UniCase<&str>>;
fn scope(&self) -> Option<UniCase<&str>>; }

Required methods

Implementors