pub trait VirtualControllerProxyInterface: Send + Sync {
    type CreateEmulatorResponseFut: Future<Output = Result<VirtualControllerCreateEmulatorResult, Error>> + Send;

    // Required methods
    fn create_emulator(&self) -> Self::CreateEmulatorResponseFut;
    fn create_loopback_device(&self, channel: Channel) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

source

fn create_emulator(&self) -> Self::CreateEmulatorResponseFut

source

fn create_loopback_device(&self, channel: Channel) -> Result<(), Error>

Implementors§