pub trait ColocatedProxyInterface: Send + Sync {
type GetVmosResponseFut: Future<Output = Result<Vec<u64>, Error>> + Send;
// Required method
fn get_vmos(&self) -> Self::GetVmosResponseFut;
}
pub trait ColocatedProxyInterface: Send + Sync {
type GetVmosResponseFut: Future<Output = Result<Vec<u64>, Error>> + Send;
// Required method
fn get_vmos(&self) -> Self::GetVmosResponseFut;
}