pub trait TopologyProxyInterface: Send + Sync {
    type AddElementResponseFut: Future<Output = Result<TopologyAddElementResult, Error>> + Send;

    // Required method
    fn add_element(&self, payload: ElementSchema) -> Self::AddElementResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§