mcr_resources/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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";
}