pub struct HyperVFirmwareUefi {
pub config: UefiConfig,
pub logger: Box<dyn UefiLogger>,
pub nvram_storage: Box<dyn InspectableNvramStorage>,
pub generation_id_recv: Receiver<[u8; 16]>,
pub watchdog_platform: Box<dyn WatchdogPlatform>,
pub vsm_config: Option<Box<dyn VsmConfig>>,
pub time_source: Box<dyn InspectableLocalClock>,
}
Expand description
Hyper-V specific UEFI Helper Device
Fields§
§config: UefiConfig
Bundle of static configuration required by the Hyper-V UEFI helper device
logger: Box<dyn UefiLogger>
Interface to log UEFI BIOS events
nvram_storage: Box<dyn InspectableNvramStorage>
Interface for storing/retrieving UEFI NVRAM variables
generation_id_recv: Receiver<[u8; 16]>
Channel to receive updated generation ID values
watchdog_platform: Box<dyn WatchdogPlatform>
Device-specific functions the platform must provide in order to use the UEFI watchdog device.
vsm_config: Option<Box<dyn VsmConfig>>
Interface to revoke VSM on ExitBootServices()
if requested
by the guest.
time_source: Box<dyn InspectableLocalClock>
Time source
Auto Trait Implementations§
impl Freeze for HyperVFirmwareUefi
impl !RefUnwindSafe for HyperVFirmwareUefi
impl Send for HyperVFirmwareUefi
impl !Sync for HyperVFirmwareUefi
impl Unpin for HyperVFirmwareUefi
impl !UnwindSafe for HyperVFirmwareUefi
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more