pub trait SinglePath {
// Required method
fn single_path(&self, s: u64, d: u64) -> GraphPath<'_>;
}Required Methods§
fn single_path(&self, s: u64, d: u64) -> GraphPath<'_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".