pub trait NodeBusTopologyProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<NodeBusTopologyGetResult, Error>> + Send;
// Required method
fn get(&self, token: Event) -> Self::GetResponseFut;
}pub trait NodeBusTopologyProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<NodeBusTopologyGetResult, Error>> + Send;
// Required method
fn get(&self, token: Event) -> Self::GetResponseFut;
}