pub trait LargestConnectedComponent {
// Required method
fn largest_connected_component(&self) -> NodeSubgraph<Self>
where Self: StaticGraphViewOps;
}Expand description
Required Methods§
fn largest_connected_component(&self) -> NodeSubgraph<Self>where
Self: StaticGraphViewOps,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".