utf_railroad/
node.rs

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