pub trait Connected<T: VertexType> {
// Required method
fn connected(
representative: &mut [T],
a: T::IdentifierType,
b: T::IdentifierType,
) -> bool;
}Expand description
Connected operation
Required Methods§
fn connected( representative: &mut [T], a: T::IdentifierType, b: T::IdentifierType, ) -> 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.