pub trait TopologyProxyInterface: Send + Sync {
type AddElementResponseFut: Future<Output = Result<TopologyAddElementResult, Error>> + Send;
// Required method
fn add_element(&self, payload: ElementSchema) -> Self::AddElementResponseFut;
}