pub trait DynamicEdgeCentricBigraph: DynamicBigraph + StaticEdgeCentricBigraph{
// Provided method
fn add_edge_centric_mirror_edges(&mut self) { ... }
}Expand description
An edge-centric dynamic bigraph that adds functionality to complete the graph with edge-centric mirror nodes and edges.
Provided Methods§
Sourcefn add_edge_centric_mirror_edges(&mut self)
fn add_edge_centric_mirror_edges(&mut self)
Adds edges such that the graph fulfils the edge centric mirror property.
Mirror edges get the reverse complement EdgeData from their existing mirror.
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.