pub struct PatchBaseline {Show 15 fields
pub id: String,
pub name: String,
pub operating_system: String,
pub description: Option<String>,
pub approval_rules: Option<Value>,
pub approved_patches: Vec<String>,
pub rejected_patches: Vec<String>,
pub tags: HashMap<String, String>,
pub approved_patches_compliance_level: String,
pub rejected_patches_action: String,
pub global_filters: Option<Value>,
pub sources: Vec<Value>,
pub approved_patches_enable_non_security: bool,
pub available_security_updates_compliance_status: Option<String>,
pub client_token: Option<String>,
}Fields§
§id: String§name: String§operating_system: String§description: Option<String>§approval_rules: Option<Value>§approved_patches: Vec<String>§rejected_patches: Vec<String>§approved_patches_compliance_level: String§rejected_patches_action: String§global_filters: Option<Value>§sources: Vec<Value>§approved_patches_enable_non_security: bool§available_security_updates_compliance_status: Option<String>§client_token: Option<String>Trait Implementations§
Source§impl Clone for PatchBaseline
impl Clone for PatchBaseline
Source§fn clone(&self) -> PatchBaseline
fn clone(&self) -> PatchBaseline
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PatchBaseline
impl Debug for PatchBaseline
Source§impl<'de> Deserialize<'de> for PatchBaseline
impl<'de> Deserialize<'de> for PatchBaseline
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
Auto Trait Implementations§
impl Freeze for PatchBaseline
impl RefUnwindSafe for PatchBaseline
impl Send for PatchBaseline
impl Sync for PatchBaseline
impl Unpin for PatchBaseline
impl UnsafeUnpin for PatchBaseline
impl UnwindSafe for PatchBaseline
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