TdispHostDeviceTarget

Trait TdispHostDeviceTarget 

Source
pub trait TdispHostDeviceTarget: Send + Sync {
    // Required method
    fn tdisp_handle_guest_command(
        &mut self,
        _command: GuestToHostCommand,
    ) -> Result<GuestToHostResponse>;
}
Expand description

Trait added to host virtual devices to dispatch TDISP commands from guests.

Required Methods§

Source

fn tdisp_handle_guest_command( &mut self, _command: GuestToHostCommand, ) -> Result<GuestToHostResponse>

Dispatch a TDISP command from a guest.

Implementors§