pub trait ControllerProxyInterface: Send + Sync {
    type CreateGuestResponseFut: Future<Output = Result<ControllerCreateGuestResult, Error>> + Send;

    // Required method
    fn create_guest(
        &self,
        name: &str,
        network: ClientEnd<NetworkMarker>,
        mac: Option<&MacAddress>
    ) -> Self::CreateGuestResponseFut;
}

Required Associated Types§

Required Methods§

source

fn create_guest( &self, name: &str, network: ClientEnd<NetworkMarker>, mac: Option<&MacAddress> ) -> Self::CreateGuestResponseFut

Implementors§