Skip to main content

HasParallelEdgesUndirected

Trait HasParallelEdgesUndirected 

Source
pub trait HasParallelEdgesUndirected: GraphBase {
    // Required method
    fn has_parallel_edges(&self) -> bool;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<G> HasParallelEdgesUndirected for G
where G: GraphProp<EdgeType = Undirected> + Visitable + EdgeCount, G::NodeId: Eq + Hash, for<'b> &'b G: GraphBase<NodeId = G::NodeId> + IntoEdgeReferences,