pub trait ColocatedProxyInterface: Send + Sync {
    type GetVmosResponseFut: Future<Output = Result<Vec<u64>, Error>> + Send;

    // Required method
    fn get_vmos(&self) -> Self::GetVmosResponseFut;
}

Required Associated Types§

source

type GetVmosResponseFut: Future<Output = Result<Vec<u64>, Error>> + Send

Required Methods§

Implementors§