pub enum MmioConfig {
Platform,
Custom(Vec<MemoryRange>),
}Expand description
Mmio configuration.
Variants§
Platform
The platform provided default.
Custom(Vec<MemoryRange>)
Custom mmio gaps. TODO: Not supported on all platforms (ie Hyper-V).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MmioConfig
impl RefUnwindSafe for MmioConfig
impl Send for MmioConfig
impl Sync for MmioConfig
impl Unpin for MmioConfig
impl UnwindSafe for MmioConfig
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