Home
last modified time | relevance | path

Searched defs:StableGraph (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/graph_impl/stable_graph/
Dmod.rs74 pub struct StableGraph<N, E, Ty = Directed, Ix = DefaultIx> { struct
94 /// A `StableGraph` with directed edges. argument
106 impl<N, E, Ty, Ix> fmt::Debug for StableGraph<N, E, Ty, Ix> implementation
168 impl<N, E> StableGraph<N, E, Directed> { impl
179 impl<N, E, Ty, Ix> StableGraph<N, E, Ty, Ix> impl
1134 impl<N, E, Ty, Ix: IndexType> Clone for StableGraph<N, E, Ty, Ix> implementation
1161 impl<N, E, Ty, Ix> Index<NodeIndex<Ix>> for StableGraph<N, E, Ty, Ix> implementation
1175 impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for StableGraph<N, E, Ty, Ix> implementation
1188 impl<N, E, Ty, Ix> Index<EdgeIndex<Ix>> for StableGraph<N, E, Ty, Ix> implementation
1202 impl<N, E, Ty, Ix> IndexMut<EdgeIndex<Ix>> for StableGraph<N, E, Ty, Ix> implementation
[all …]
Dserialization.rs154 impl<'a, N, E, Ty, Ix> IntoSerializable for &'a StableGraph<N, E, Ty, Ix> implementation
175 impl<N, E, Ty, Ix> Serialize for StableGraph<N, E, Ty, Ix> implementation
190 impl<'a, N, E, Ty, Ix> FromDeserialized for StableGraph<N, E, Ty, Ix> implementation
250 impl<'de, N, E, Ty, Ix> Deserialize<'de> for StableGraph<N, E, Ty, Ix> implementation
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/
Ddata.rs108 impl<N, E, Ty, Ix> DataMap for StableGraph<N, E, Ty, Ix> implementation
122 impl<N, E, Ty, Ix> DataMapMut for StableGraph<N, E, Ty, Ix> implementation
162 impl<N, E, Ty, Ix> Build for StableGraph<N, E, Ty, Ix> implementation
233 impl<N, E, Ty, Ix> Create for StableGraph<N, E, Ty, Ix> implementation
340 impl<N, E, Ty, Ix> FromElements for StableGraph<N, E, Ty, Ix> implementation
Dtraits_graph.rs47 impl<N, E, Ty, Ix> GetAdjacencyMatrix for StableGraph<N, E, Ty, Ix> implementation
Dquickcheck.rs99 impl<N, E, Ty, Ix> Arbitrary for StableGraph<N, E, Ty, Ix> implementation
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/tests/
Dquickcheck.rs224 fn prop<Ty: EdgeType>(mut g: StableGraph<(), i32, Ty>) -> bool { in stable_graph_retain_edges()
360 fn prop<Ty: EdgeType>(mut g: StableGraph<(), (), Ty>, a: u8, b: u8) -> bool { in stable_graph_remove_edge()
386 fn prop<Ty: EdgeType>(mut g: StableGraph<(), (), Ty>, edges: Vec<(u8, u8)>) -> bool { in stable_graph_add_remove_edges()
Dstable_graph.rs142 fn make_graph<Ty>() -> StableGraph<(), i32, Ty> in make_graph()
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/benches/common/
Dfactories.rs268 pub fn stable_graph<Ty: EdgeType>() -> GraphFactory<Ty, StableGraph<(), (), Ty>> { in stable_graph() argument