pub trait GraphProp: GraphBase {
type EdgeType: EdgeType;
// Provided method
fn is_directed(&self) -> bool { ... }
}Expand description
Edge kind property (directed or undirected edges)
Required Associated Types§
Provided Methods§
fn is_directed(&self) -> bool
Implementations on Foreign Types§
Implementors§
Source§impl<G, F> GraphProp for EdgeFiltered<G, F>where
G: GraphProp,
impl<G, F> GraphProp for EdgeFiltered<G, F>where
G: GraphProp,
Source§impl<G, F> GraphProp for NodeFiltered<G, F>where
G: GraphProp,
impl<G, F> GraphProp for NodeFiltered<G, F>where
G: GraphProp,
Source§impl<N, E, Ty, Ix> GraphProp for StableGraph<N, E, Ty, Ix>
Available on crate feature stable_graph only.
impl<N, E, Ty, Ix> GraphProp for StableGraph<N, E, Ty, Ix>
Available on crate feature
stable_graph only.