mcr_resources/lib.rs
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! TODO MCR
#![expect(missing_docs)]
#![forbid(unsafe_code)]
// #![warn(missing_docs)] // TODO MCR
use mesh::MeshPayload;
use vm_resource::ResourceId;
use vm_resource::kind::PciDeviceHandleKind;
#[derive(MeshPayload)]
pub struct McrControllerHandle {
pub instance_id: guid::Guid,
}
impl ResourceId<PciDeviceHandleKind> for McrControllerHandle {
const ID: &'static str = "mcr";
}