pub trait Nodetrait {
// Required methods
fn literal(&self) -> String;
fn to_str(&self) -> String;
fn to_node(self) -> Node;
}pub trait Nodetrait {
// Required methods
fn literal(&self) -> String;
fn to_str(&self) -> String;
fn to_node(self) -> Node;
}