pub enum DtError {
DeviceTree(Error<'static>),
CommandLineSize,
Vtl2Vmbus,
Vtl0Vmbus,
NotEnoughMmio,
}
Expand description
Errors when reading the host device tree.
Variants§
DeviceTree(Error<'static>)
Invalid device tree.
CommandLineSize
PartitionInfo’s command line is too small to write the parsed legacy command line.
Vtl2Vmbus
Device tree did not contain a vmbus node for VTL2.
Vtl0Vmbus
Device tree did not contain a vmbus node for VTL0.
NotEnoughMmio
Host provided high MMIO range is insufficient to cover VTL0 and VTL2.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DtError
impl RefUnwindSafe for DtError
impl Send for DtError
impl Sync for DtError
impl Unpin for DtError
impl UnwindSafe for DtError
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