pub struct SoftwarePackage {
pub apt_package: Option<VersionedPackage>,
pub cos_package: Option<VersionedPackage>,
pub googet_package: Option<VersionedPackage>,
pub qfe_package: Option<WindowsQuickFixEngineeringPackage>,
pub windows_application: Option<WindowsApplication>,
pub wua_package: Option<WindowsUpdatePackage>,
pub yum_package: Option<VersionedPackage>,
pub zypper_package: Option<VersionedPackage>,
pub zypper_patch: Option<ZypperPatch>,
}Expand description
Software package information of the operating system.
This type is not used in any activity, and only used as part of another schema.
Fields§
§apt_package: Option<VersionedPackage>Details of an APT package. For details about the apt package manager, see https://wiki.debian.org/Apt.
cos_package: Option<VersionedPackage>Details of a COS package.
googet_package: Option<VersionedPackage>Details of a Googet package. For details about the googet package manager, see https://github.com/google/googet.
qfe_package: Option<WindowsQuickFixEngineeringPackage>Details of a Windows Quick Fix engineering package. See https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering for info in Windows Quick Fix Engineering.
windows_application: Option<WindowsApplication>Details of Windows Application.
wua_package: Option<WindowsUpdatePackage>Details of a Windows Update package. See https://docs.microsoft.com/en-us/windows/win32/api/_wua/ for information about Windows Update.
yum_package: Option<VersionedPackage>Yum package info. For details about the yum package manager, see https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/ch-yum.
zypper_package: Option<VersionedPackage>Details of a Zypper package. For details about the Zypper package manager, see https://en.opensuse.org/SDB:Zypper_manual.
zypper_patch: Option<ZypperPatch>Details of a Zypper patch. For details about the Zypper package manager, see https://en.opensuse.org/SDB:Zypper_manual.
Trait Implementations§
Source§impl Clone for SoftwarePackage
impl Clone for SoftwarePackage
Source§fn clone(&self) -> SoftwarePackage
fn clone(&self) -> SoftwarePackage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more