pub struct WindowsQuickFixEngineeringPackage {
pub caption: Option<String>,
pub description: Option<String>,
pub hot_fix_id: Option<String>,
pub install_time: Option<DateTime<Utc>>,
}Expand description
Information related to a Quick Fix Engineering package. Fields are taken from Windows QuickFixEngineering Interface and match the source names: https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
This type is not used in any activity, and only used as part of another schema.
Fields§
§caption: Option<String>A short textual description of the QFE update.
description: Option<String>A textual description of the QFE update.
hot_fix_id: Option<String>Unique identifier associated with a particular QFE update.
install_time: Option<DateTime<Utc>>Date that the QFE update was installed. Mapped from installed_on field.
Trait Implementations§
Source§impl Clone for WindowsQuickFixEngineeringPackage
impl Clone for WindowsQuickFixEngineeringPackage
Source§fn clone(&self) -> WindowsQuickFixEngineeringPackage
fn clone(&self) -> WindowsQuickFixEngineeringPackage
Returns a duplicate 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 Default for WindowsQuickFixEngineeringPackage
impl Default for WindowsQuickFixEngineeringPackage
Source§fn default() -> WindowsQuickFixEngineeringPackage
fn default() -> WindowsQuickFixEngineeringPackage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowsQuickFixEngineeringPackage
impl<'de> Deserialize<'de> for WindowsQuickFixEngineeringPackage
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
impl Part for WindowsQuickFixEngineeringPackage
Auto Trait Implementations§
impl Freeze for WindowsQuickFixEngineeringPackage
impl RefUnwindSafe for WindowsQuickFixEngineeringPackage
impl Send for WindowsQuickFixEngineeringPackage
impl Sync for WindowsQuickFixEngineeringPackage
impl Unpin for WindowsQuickFixEngineeringPackage
impl UnwindSafe for WindowsQuickFixEngineeringPackage
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