Searched refs:fmt_struct (Results 1 – 3 of 3) sorted by relevance
/external/rust/android-crates-io/crates/petgraph/src/ |
D | adj.rs | 402 let mut fmt_struct = f.debug_struct("adj::List"); in fmt() localVariable 403 fmt_struct.field("node_count", &self.node_count()); in fmt() 404 fmt_struct.field("edge_count", &self.edge_count()); in fmt() 406 fmt_struct.field("edges", &self.edge_references()); in fmt() 408 fmt_struct.finish() in fmt()
|
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/stable_graph/ |
D | mod.rs | 119 let mut fmt_struct = f.debug_struct("StableGraph"); in fmt() localVariable 120 fmt_struct.field("Ty", &etype); in fmt() 121 fmt_struct.field("node_count", &self.node_count); in fmt() 122 fmt_struct.field("edge_count", &self.edge_count); in fmt() 124 fmt_struct.field( in fmt() 137 fmt_struct.field( in fmt() 150 fmt_struct.field( in fmt() 162 fmt_struct.field("free_node", &self.free_node); in fmt() 163 fmt_struct.field("free_edge", &self.free_edge); in fmt() 164 fmt_struct.finish() in fmt()
|
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/ |
D | mod.rs | 399 let mut fmt_struct = f.debug_struct("Graph"); in fmt() localVariable 400 fmt_struct.field("Ty", &etype); in fmt() 401 fmt_struct.field("node_count", &self.node_count()); in fmt() 402 fmt_struct.field("edge_count", &self.edge_count()); in fmt() 404 fmt_struct.field( in fmt() 415 fmt_struct.field( in fmt() 421 fmt_struct.field( in fmt() 426 fmt_struct.finish() in fmt()
|