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