#[non_exhaustive]pub struct GetDefaultPatchBaselineInput {
pub operating_system: Option<OperatingSystem>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.operating_system: Option<OperatingSystem>
Returns the default patch baseline for the specified operating system.
Implementations§
source§impl GetDefaultPatchBaselineInput
impl GetDefaultPatchBaselineInput
sourcepub fn operating_system(&self) -> Option<&OperatingSystem>
pub fn operating_system(&self) -> Option<&OperatingSystem>
Returns the default patch baseline for the specified operating system.
source§impl GetDefaultPatchBaselineInput
impl GetDefaultPatchBaselineInput
sourcepub fn builder() -> GetDefaultPatchBaselineInputBuilder
pub fn builder() -> GetDefaultPatchBaselineInputBuilder
Creates a new builder-style object to manufacture GetDefaultPatchBaselineInput
.
Trait Implementations§
source§impl Clone for GetDefaultPatchBaselineInput
impl Clone for GetDefaultPatchBaselineInput
source§fn clone(&self) -> GetDefaultPatchBaselineInput
fn clone(&self) -> GetDefaultPatchBaselineInput
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 GetDefaultPatchBaselineInput
impl Debug for GetDefaultPatchBaselineInput
source§impl PartialEq<GetDefaultPatchBaselineInput> for GetDefaultPatchBaselineInput
impl PartialEq<GetDefaultPatchBaselineInput> for GetDefaultPatchBaselineInput
source§fn eq(&self, other: &GetDefaultPatchBaselineInput) -> bool
fn eq(&self, other: &GetDefaultPatchBaselineInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDefaultPatchBaselineInput
Auto Trait Implementations§
impl RefUnwindSafe for GetDefaultPatchBaselineInput
impl Send for GetDefaultPatchBaselineInput
impl Sync for GetDefaultPatchBaselineInput
impl Unpin for GetDefaultPatchBaselineInput
impl UnwindSafe for GetDefaultPatchBaselineInput
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