Get all edges in the graph
(&self)
| 174 | |
| 175 | /// Get all edges in the graph |
| 176 | pub fn get_all_edges(&self) -> Vec<&Edge> { |
| 177 | self.edges.values().collect() |
| 178 | } |
| 179 | |
| 180 | /// Get all edges in the graph (owned) |
| 181 | pub fn get_all_edges_owned(&self) -> Result<Vec<Edge>, GraphError> { |
no outgoing calls
no test coverage detected