pub trait Describe {
fn get_indented_description(&self, indent: &mut usize, text: String) -> String {
*indent += 1;
let indentation_spaces = " ".repeat(*indent);
format!("{}{}", indentation_spaces, text)
}
fn describe(&self, indent: &mut usize) -> String;
}