pub enum OpenhclRecipeCli {
Aarch64,
Aarch64Devkern,
X64Cvm,
X64CvmDevkern,
X64TestLinuxDirect,
X64TestLinuxDirectDevkern,
X64,
X64Devkern,
}
Variants§
Aarch64
Aarch64 OpenHCL
Aarch64Devkern
Aarch64 OpenHCL, using the dev kernel in VTL2
X64Cvm
X64 OpenHCL, with CVM support.
X64CvmDevkern
X64 OpenHCL, with CVM support using the dev kernel in VTL2
X64TestLinuxDirect
X64 OpenHCL booting VTL0 using a test linux-direct kernel + initrd (no UEFI).
X64TestLinuxDirectDevkern
X64 OpenHCL booting VTL0 using a test linux-direct kernel + initrd (no UEFI), using the dev kernel in VTL2.
X64
X64 OpenHCL
X64Devkern
X64 OpenHCL, using the dev kernel in VTL2
Trait Implementations§
Source§impl Clone for OpenhclRecipeCli
impl Clone for OpenhclRecipeCli
Source§fn clone(&self) -> OpenhclRecipeCli
fn clone(&self) -> OpenhclRecipeCli
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl ValueEnum for OpenhclRecipeCli
impl ValueEnum for OpenhclRecipeCli
impl Copy for OpenhclRecipeCli
Auto Trait Implementations§
impl Freeze for OpenhclRecipeCli
impl RefUnwindSafe for OpenhclRecipeCli
impl Send for OpenhclRecipeCli
impl Sync for OpenhclRecipeCli
impl Unpin for OpenhclRecipeCli
impl UnwindSafe for OpenhclRecipeCli
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more