1 2 3 4 5
pub trait Node { fn get_width(&self) -> usize; fn get_height(&self) -> usize; fn as_str(&self) -> String; }