pub trait FinGraph: Graph {
// Required methods
fn vertices(&self) -> impl Iterator<Item = Self::V>;
fn edges(&self) -> impl Iterator<Item = Self::E>;
// Provided methods
fn in_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E> { ... }
fn out_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E> { ... }
fn vertex_count(&self) -> usize { ... }
fn edge_count(&self) -> usize { ... }
fn in_degree(&self, v: &Self::V) -> usize { ... }
fn out_degree(&self, v: &Self::V) -> usize { ... }
fn degree(&self, v: &Self::V) -> usize { ... }
}
Expand description
A graph with finitely many vertices and edges.
Required Methods§
Provided Methods§
Sourcefn in_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E>
fn in_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E>
Iterates over the edges incoming to a vertex.
Depending on whether the target map is indexed, this method can be cheap or expensive.
Sourcefn out_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E>
fn out_edges(&self, v: &Self::V) -> impl Iterator<Item = Self::E>
Iterates over the edges outgoing from a vertex.
Depending on whether the source map is indexed, this method can be cheap or expensive.
Sourcefn vertex_count(&self) -> usize
fn vertex_count(&self) -> usize
Number of vertices in the graph.
Sourcefn edge_count(&self) -> usize
fn edge_count(&self) -> usize
Number of edges in the graph.
Sourcefn out_degree(&self, v: &Self::V) -> usize
fn out_degree(&self, v: &Self::V) -> usize
Number of edges outgoing from a vertex.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.