pub enum PcatGuest {
Vhd(BootImageConfig<Vhd>),
Iso(BootImageConfig<Iso>),
}Expand description
The guest the VM will boot into. A boot drive with the chosen setup will be automatically configured.
Variants§
Vhd(BootImageConfig<Vhd>)
Mount a VHD as the boot drive.
Iso(BootImageConfig<Iso>)
Mount an ISO as the CD/DVD drive.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PcatGuest
impl RefUnwindSafe for PcatGuest
impl Send for PcatGuest
impl Sync for PcatGuest
impl Unpin for PcatGuest
impl UnwindSafe for PcatGuest
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