pub struct Piix4CmosRtcDeps {
pub time_source: Box<dyn InspectableLocalClock>,
pub initial_cmos: Option<[u8; 256]>,
pub enlightened_interrupts: bool,
}
Expand description
PIIX4 “flavored” MC146818A compatible RTC + CMOS device
Fields§
§time_source: Box<dyn InspectableLocalClock>
A source of “real time”
initial_cmos: Option<[u8; 256]>
Initial state of CMOS RAM
enlightened_interrupts: bool
Whether enlightened interrupts are enabled. Needed when advertised by ACPI WAET table.
Auto Trait Implementations§
impl Freeze for Piix4CmosRtcDeps
impl !RefUnwindSafe for Piix4CmosRtcDeps
impl Send for Piix4CmosRtcDeps
impl !Sync for Piix4CmosRtcDeps
impl Unpin for Piix4CmosRtcDeps
impl !UnwindSafe for Piix4CmosRtcDeps
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