vmbfs_resources/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Resources for the vmbfs device.

#![forbid(unsafe_code)]

use mesh::MeshPayload;
use std::fs::File;
use vm_resource::ResourceId;
use vm_resource::kind::VmbusDeviceHandleKind;

/// A handle to a vmbfs device for providing an IMC hive to the Windows boot
/// loader.
#[derive(MeshPayload)]
pub struct VmbfsImcDeviceHandle {
    /// The file containing the IMC hive data.
    pub file: File,
}

impl ResourceId<VmbusDeviceHandleKind> for VmbfsImcDeviceHandle {
    const ID: &'static str = "vmbfs-imc";
}