vmbfs_resources/lib.rs
// 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";
}