pub trait ITextTrait: INodeTrait {
// Required methods
fn remove(self: Box<Self>);
fn append_text(&mut self, content: &str);
fn prepend_text(&mut self, content: &str);
}
pub trait ITextTrait: INodeTrait {
// Required methods
fn remove(self: Box<Self>);
fn append_text(&mut self, content: &str);
fn prepend_text(&mut self, content: &str);
}