pub trait FindConnectedComponents<GH> {
type Error;
// Required method
fn find_conn_comp(&mut self) -> Result<Vec<GH>, Self::Error>;
}Required Associated Types§
Required Methods§
fn find_conn_comp(&mut self) -> Result<Vec<GH>, Self::Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".