pub trait PathPrefetcher {
// Required method
fn prefetch_path(&self, src: IsdAsn, dst: IsdAsn);
}Expand description
Trait for prefetching paths in the path manager.
Required Methods§
Sourcefn prefetch_path(&self, src: IsdAsn, dst: IsdAsn)
fn prefetch_path(&self, src: IsdAsn, dst: IsdAsn)
Prefetch a paths for the given source and destination.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".