pub trait Item {
// Required methods
fn parsed_lines(&self) -> &Vec<Vec<String>>;
fn add_parsed_line(&mut self, parsed_line: Vec<String>);
// Provided method
fn to_string_vec(&self) -> Vec<String> { ... }
}Expand description
A trait for graph items (using enum_dispatch).