pub trait WorldInfoNode: Debug {
// Required methods
fn content(&self) -> Result<String, WorldInfoError>;
fn name(&self) -> String;
fn cloned(&self) -> Box<dyn WorldInfoNode + '_>;
}
pub trait WorldInfoNode: Debug {
// Required methods
fn content(&self) -> Result<String, WorldInfoError>;
fn name(&self) -> String;
fn cloned(&self) -> Box<dyn WorldInfoNode + '_>;
}