pub struct WindowsProperties {
pub included_update_classifications: Option<IncludedUpdateClassifications>,
pub excluded_kb_numbers: Vec<String>,
pub included_kb_numbers: Vec<String>,
pub reboot_setting: Option<String>,
}Expand description
Windows specific update configuration.
Fields§
§included_update_classifications: Option<IncludedUpdateClassifications>Update classification included in the software update configuration. A comma separated string with required values
excluded_kb_numbers: Vec<String>KB numbers excluded from the software update configuration.
included_kb_numbers: Vec<String>KB numbers included from the software update configuration.
reboot_setting: Option<String>Reboot setting for the software update configuration.
Implementations§
Trait Implementations§
Source§impl Clone for WindowsProperties
impl Clone for WindowsProperties
Source§fn clone(&self) -> WindowsProperties
fn clone(&self) -> WindowsProperties
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 Debug for WindowsProperties
impl Debug for WindowsProperties
Source§impl Default for WindowsProperties
impl Default for WindowsProperties
Source§fn default() -> WindowsProperties
fn default() -> WindowsProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowsProperties
impl<'de> Deserialize<'de> for WindowsProperties
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 WindowsProperties
impl PartialEq for WindowsProperties
Source§impl Serialize for WindowsProperties
impl Serialize for WindowsProperties
impl StructuralPartialEq for WindowsProperties
Auto Trait Implementations§
impl Freeze for WindowsProperties
impl RefUnwindSafe for WindowsProperties
impl Send for WindowsProperties
impl Sync for WindowsProperties
impl Unpin for WindowsProperties
impl UnwindSafe for WindowsProperties
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