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§
Required Methods§
fn get_vmos(&self) -> Self::GetVmosResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".