pub struct Customizations {Show 18 fields
pub build_label: Option<String>,
pub custom_directory: Vec<PathBuf>,
pub custom_kernel_modules: Option<PathBuf>,
pub custom_kernel: Option<PathBuf>,
pub custom_layer: Vec<PathBuf>,
pub custom_openhcl_boot: Option<PathBuf>,
pub custom_openvmm_hcl: Option<PathBuf>,
pub custom_sidecar: Option<PathBuf>,
pub custom_uefi: Option<PathBuf>,
pub custom_vtl0_kernel: Option<PathBuf>,
pub custom_extra_rootfs: Vec<PathBuf>,
pub override_arch: Option<CommonArch>,
pub override_kernel_pkg: Option<OpenhclKernelPackage>,
pub override_manifest: Option<PathBuf>,
pub override_openvmm_hcl_feature: Vec<String>,
pub with_debuginfo: bool,
pub with_perf_tools: bool,
pub with_sidecar: bool,
}
Fields§
§build_label: Option<String>
§custom_directory: Vec<PathBuf>
§custom_kernel_modules: Option<PathBuf>
§custom_kernel: Option<PathBuf>
§custom_layer: Vec<PathBuf>
§custom_openhcl_boot: Option<PathBuf>
§custom_openvmm_hcl: Option<PathBuf>
§custom_sidecar: Option<PathBuf>
§custom_uefi: Option<PathBuf>
§custom_vtl0_kernel: Option<PathBuf>
§custom_extra_rootfs: Vec<PathBuf>
§override_arch: Option<CommonArch>
§override_kernel_pkg: Option<OpenhclKernelPackage>
§override_manifest: Option<PathBuf>
§override_openvmm_hcl_feature: Vec<String>
§with_debuginfo: bool
§with_perf_tools: bool
§with_sidecar: bool
Trait Implementations§
Source§impl Default for Customizations
impl Default for Customizations
Source§fn default() -> Customizations
fn default() -> Customizations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Customizations
impl<'de> Deserialize<'de> for Customizations
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Customizations
impl PartialEq for Customizations
Source§impl Serialize for Customizations
impl Serialize for Customizations
impl Eq for Customizations
impl StructuralPartialEq for Customizations
Auto Trait Implementations§
impl Freeze for Customizations
impl RefUnwindSafe for Customizations
impl Send for Customizations
impl Sync for Customizations
impl Unpin for Customizations
impl UnwindSafe for Customizations
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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