pub trait TopologicalPathProxyInterface: Send + Sync {
type GetTopologicalPathResponseFut: Future<Output = Result<TopologicalPathGetTopologicalPathResult, Error>> + Send;
// Required method
fn get_topological_path(&self) -> Self::GetTopologicalPathResponseFut;
}