pub trait Element {
// Required methods
fn ids(&self) -> &Vec<ID>;
fn ids_mut(&mut self) -> &mut Vec<ID>;
fn names(&self) -> &Vec<NameToken>;
fn names_mut(&mut self) -> &mut Vec<NameToken>;
fn source(&self) -> &Option<PathBuf>;
fn source_mut(&mut self) -> &mut Option<PathBuf>;
fn classes(&self) -> &Vec<String>;
fn classes_mut(&mut self) -> &mut Vec<String>;
}
Required Methods§
fn ids_mut(&mut self) -> &mut Vec<ID>
Sourcefn names(&self) -> &Vec<NameToken>
fn names(&self) -> &Vec<NameToken>
a list containing the names of an element, typically originating from the element’s title or content. Each name in names must be unique; if there are name conflicts (two or more elements want to the same name), the contents will be transferred to the dupnames attribute on the duplicate elements. An element may have at most one of the names or dupnames attributes, but not both.