pub struct SoftwareInventory {Show 23 fields
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub actions: Option<Actions>,
pub additional_versions: Option<AdditionalVersions>,
pub description: Option<Description>,
pub id: Id,
pub lowest_supported_version: Option<String>,
pub manufacturer: Option<String>,
pub measurement: Option<MeasurementBlock>,
pub name: Name,
pub oem: Option<Oem>,
pub related_item: Option<Vec<IdRef>>,
pub related_item_odata_count: Option<Count>,
pub release_date: Option<String>,
pub software_id: Option<String>,
pub status: Option<Status>,
pub uefi_device_paths: Option<Vec<String>>,
pub updateable: Option<bool>,
pub version: Option<String>,
pub version_scheme: Option<VersionScheme>,
pub write_protected: Option<bool>,
}
Expand description
The SoftwareInventory schema contains an inventory of software components. This can include software components such as BIOS, BMC firmware, firmware for other devices, system drivers, or provider software.
Fields§
§odata_context: Option<Context>
§odata_etag: Option<Etag>
§odata_id: Id
§odata_type: Type
§actions: Option<Actions>
§additional_versions: Option<AdditionalVersions>
§description: Option<Description>
§id: Id
§lowest_supported_version: Option<String>
The lowest supported version of this software.
manufacturer: Option<String>
The manufacturer or producer of this software.
measurement: Option<MeasurementBlock>
§name: Name
§oem: Option<Oem>
The IDs of the Resources associated with this software inventory item.
release_date: Option<String>
The release date of this software.
software_id: Option<String>
The implementation-specific label that identifies this software.
status: Option<Status>
§uefi_device_paths: Option<Vec<String>>
The list of UEFI device paths of the components associated with this software inventory item.
updateable: Option<bool>
An indication of whether the Update Service can update this software.
version: Option<String>
The version of this software.
version_scheme: Option<VersionScheme>
§write_protected: Option<bool>
Indicates if the software is write-protected.
Trait Implementations§
Source§impl Clone for SoftwareInventory
impl Clone for SoftwareInventory
Source§fn clone(&self) -> SoftwareInventory
fn clone(&self) -> SoftwareInventory
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SoftwareInventory
impl Debug for SoftwareInventory
Source§impl Default for SoftwareInventory
impl Default for SoftwareInventory
Source§impl<'de> Deserialize<'de> for SoftwareInventory
impl<'de> Deserialize<'de> for SoftwareInventory
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 Metadata<'static> for SoftwareInventory
impl Metadata<'static> for SoftwareInventory
Source§const JSON_SCHEMA: &'static str = "SoftwareInventory.v1_9_0.json"
const JSON_SCHEMA: &'static str = "SoftwareInventory.v1_9_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for SoftwareInventory
impl RefUnwindSafe for SoftwareInventory
impl Send for SoftwareInventory
impl Sync for SoftwareInventory
impl Unpin for SoftwareInventory
impl UnwindSafe for SoftwareInventory
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