1 2 3 4 5 6 7
pub trait Style {
fn subject(&self) -> &str;
fn body(&self) -> Option<&str>;
fn type_(&self) -> Option<unicase::UniCase<&str>>;
fn scope(&self) -> Option<unicase::UniCase<&str>>;
}
1 2 3 4 5 6 7
pub trait Style {
fn subject(&self) -> &str;
fn body(&self) -> Option<&str>;
fn type_(&self) -> Option<unicase::UniCase<&str>>;
fn scope(&self) -> Option<unicase::UniCase<&str>>;
}