uidevices_resources/
lib.rs#![forbid(unsafe_code)]
use mesh::MeshPayload;
use vm_resource::Resource;
use vm_resource::ResourceId;
use vm_resource::kind::FramebufferHandleKind;
use vm_resource::kind::KeyboardInputHandleKind;
use vm_resource::kind::MouseInputHandleKind;
use vm_resource::kind::VmbusDeviceHandleKind;
#[derive(MeshPayload)]
pub struct SynthKeyboardHandle {
pub source: Resource<KeyboardInputHandleKind>,
}
impl ResourceId<VmbusDeviceHandleKind> for SynthKeyboardHandle {
const ID: &'static str = "keyboard";
}
#[derive(MeshPayload)]
pub struct SynthMouseHandle {
pub source: Resource<MouseInputHandleKind>,
}
impl ResourceId<VmbusDeviceHandleKind> for SynthMouseHandle {
const ID: &'static str = "mouse";
}
#[derive(MeshPayload)]
pub struct SynthVideoHandle {
pub framebuffer: Resource<FramebufferHandleKind>,
}
impl ResourceId<VmbusDeviceHandleKind> for SynthVideoHandle {
const ID: &'static str = "video";
}