pub struct BootImageConfig<T: BootImageType> { /* private fields */ }Expand description
Configuration information for the boot drive of the VM.
Implementations§
Source§impl BootImageConfig<Vhd>
impl BootImageConfig<Vhd>
Sourcepub fn from_vhd<A>(artifact: ResolvedArtifact<A>) -> Selfwhere
A: IsTestVhd,
pub fn from_vhd<A>(artifact: ResolvedArtifact<A>) -> Selfwhere
A: IsTestVhd,
Create a new BootImageConfig from a VHD artifact handle
Source§impl BootImageConfig<Iso>
impl BootImageConfig<Iso>
Sourcepub fn from_iso<A>(artifact: ResolvedArtifact<A>) -> Selfwhere
A: IsTestIso,
pub fn from_iso<A>(artifact: ResolvedArtifact<A>) -> Selfwhere
A: IsTestIso,
Create a new BootImageConfig from an ISO artifact handle
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for BootImageConfig<T>
impl<T> RefUnwindSafe for BootImageConfig<T>where
T: RefUnwindSafe,
impl<T> Send for BootImageConfig<T>where
T: Send,
impl<T> Sync for BootImageConfig<T>where
T: Sync,
impl<T> Unpin for BootImageConfig<T>where
T: Unpin,
impl<T> UnwindSafe for BootImageConfig<T>where
T: UnwindSafe,
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