pub trait UnderlayDiscovery: Send + Sync {
// Required method
fn list_underlays(&self, isd_as: IsdAsn) -> Underlays;
}Expand description
Underlay discovery trait.
Required Methods§
Sourcefn list_underlays(&self, isd_as: IsdAsn) -> Underlays
fn list_underlays(&self, isd_as: IsdAsn) -> Underlays
List the underlays available to reach the given ISD-AS.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".