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