pub trait Subgraph<N = String, V = i64>: Graph<N, V>{
// Provided method
fn is_subgraph(&self, graph: impl Graph<N, V>) -> bool { ... }
}
Provided Methods§
fn is_subgraph(&self, graph: impl Graph<N, V>) -> bool
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.