pub struct DeviceCompliancePolicySettingState {
pub setting: String,
pub setting_name: String,
pub instance_display_name: String,
pub state: ComplianceStatus,
pub error_code: i64,
pub error_description: String,
pub user_id: String,
pub user_name: String,
pub user_email: String,
pub user_principal_name: String,
pub sources: Vec<SettingSource>,
pub current_value: String,
}
Fields§
§setting: String
§setting_name: String
§instance_display_name: String
§state: ComplianceStatus
§error_code: i64
§error_description: String
§user_id: String
§user_name: String
§user_email: String
§user_principal_name: String
§sources: Vec<SettingSource>
§current_value: String
Trait Implementations§
Source§impl Clone for DeviceCompliancePolicySettingState
impl Clone for DeviceCompliancePolicySettingState
Source§fn clone(&self) -> DeviceCompliancePolicySettingState
fn clone(&self) -> DeviceCompliancePolicySettingState
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<'de> Deserialize<'de> for DeviceCompliancePolicySettingState
impl<'de> Deserialize<'de> for DeviceCompliancePolicySettingState
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 DeviceCompliancePolicySettingState
impl PartialEq for DeviceCompliancePolicySettingState
Source§fn eq(&self, other: &DeviceCompliancePolicySettingState) -> bool
fn eq(&self, other: &DeviceCompliancePolicySettingState) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for DeviceCompliancePolicySettingState
impl StructuralPartialEq for DeviceCompliancePolicySettingState
Auto Trait Implementations§
impl Freeze for DeviceCompliancePolicySettingState
impl RefUnwindSafe for DeviceCompliancePolicySettingState
impl Send for DeviceCompliancePolicySettingState
impl Sync for DeviceCompliancePolicySettingState
impl Unpin for DeviceCompliancePolicySettingState
impl UnwindSafe for DeviceCompliancePolicySettingState
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