pub trait Node:
'static
+ Debug
+ Display
+ NodeClone
+ NodeDefaultHash
+ Send
+ Sync {
// Required method
fn get_name(&self) -> &str;
// Provided methods
fn append<T>(&mut self, _: T)
where Self: Sized,
T: Into<Box<dyn Node>> { ... }
fn assign<T, U>(&mut self, _: T, _: U)
where Self: Sized,
T: Into<String>,
U: Into<Value> { ... }
fn get_attributes(&self) -> Option<&Attributes> { ... }
fn get_attributes_mut(&mut self) -> Option<&mut Attributes> { ... }
fn get_children(&self) -> Option<&Children> { ... }
fn get_children_mut(&mut self) -> Option<&mut Children> { ... }
}
Expand description
A node.
Required Methods§
Provided Methods§
Sourcefn get_attributes(&self) -> Option<&Attributes>
fn get_attributes(&self) -> Option<&Attributes>
Return the attributes.
Sourcefn get_attributes_mut(&mut self) -> Option<&mut Attributes>
fn get_attributes_mut(&mut self) -> Option<&mut Attributes>
Return the attributes as mutable.
Sourcefn get_children(&self) -> Option<&Children>
fn get_children(&self) -> Option<&Children>
Return the children.
Sourcefn get_children_mut(&mut self) -> Option<&mut Children>
fn get_children_mut(&mut self) -> Option<&mut Children>
Return the children as mutable.