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§
Sourcefn tdisp_handle_guest_command(
&mut self,
_command: GuestToHostCommand,
) -> Result<GuestToHostResponse>
fn tdisp_handle_guest_command( &mut self, _command: GuestToHostCommand, ) -> Result<GuestToHostResponse>
Dispatch a TDISP command from a guest.