Struct simics_package::spec::IspmMetadata
source · pub struct IspmMetadata {
pub name: String,
pub package_number: isize,
pub version: String,
pub package_name: String,
pub kind: String,
pub host: String,
pub confidentiality: String,
pub build_id: String,
pub build_id_namespace: String,
pub description: String,
pub uncompressed_size: usize,
}
Expand description
Output format for the ispm-metadata file at the top-level of the package. It contains a subset of the package spec information
Fields§
§name: String
The human-readable name of the package
package_number: isize
The package number
version: String
The package version
package_name: String
The package name, which should be Camel-Kebab-Cased.
kind: String
The package kind, typically “addon”
host: String
The host supporting this package, either linux64 or win64
confidentiality: String
The confidentiality setting of this package
build_id: String
The build ID of this package
build_id_namespace: String
The namespace for which the build ID of this package is valid
description: String
The description of this package
uncompressed_size: usize
The size of the inner package.tar.gz file as given by du -sb
Trait Implementations§
source§impl Clone for IspmMetadata
impl Clone for IspmMetadata
source§fn clone(&self) -> IspmMetadata
fn clone(&self) -> IspmMetadata
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 Debug for IspmMetadata
impl Debug for IspmMetadata
source§impl<'de> Deserialize<'de> for IspmMetadata
impl<'de> Deserialize<'de> for IspmMetadata
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 From<&PackageSpec> for IspmMetadata
impl From<&PackageSpec> for IspmMetadata
source§fn from(value: &PackageSpec) -> Self
fn from(value: &PackageSpec) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IspmMetadata
impl RefUnwindSafe for IspmMetadata
impl Send for IspmMetadata
impl Sync for IspmMetadata
impl Unpin for IspmMetadata
impl UnwindSafe for IspmMetadata
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)