pub trait TopologicalPathProxyInterface: Send + Sync {
type GetTopologicalPathResponseFut: Future<Output = Result<TopologicalPathGetTopologicalPathResult, Error>> + Send;
// Required method
fn get_topological_path(&self) -> Self::GetTopologicalPathResponseFut;
}Required Associated Types§
type GetTopologicalPathResponseFut: Future<Output = Result<TopologicalPathGetTopologicalPathResult, Error>> + Send
Required Methods§
fn get_topological_path(&self) -> Self::GetTopologicalPathResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".