pub struct DeviceComplianceDeviceOverview {
pub pending_count: i32,
pub not_applicable_count: i32,
pub success_count: i32,
pub error_count: i32,
pub failed_count: i32,
pub last_update_date_time: String,
pub configuration_version: i32,
}
Fields§
§pending_count: i32
§not_applicable_count: i32
§success_count: i32
§error_count: i32
§failed_count: i32
§last_update_date_time: String
§configuration_version: i32
Trait Implementations§
Source§impl Clone for DeviceComplianceDeviceOverview
impl Clone for DeviceComplianceDeviceOverview
Source§fn clone(&self) -> DeviceComplianceDeviceOverview
fn clone(&self) -> DeviceComplianceDeviceOverview
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 DeviceComplianceDeviceOverview
impl<'de> Deserialize<'de> for DeviceComplianceDeviceOverview
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 DeviceComplianceDeviceOverview
impl PartialEq for DeviceComplianceDeviceOverview
Source§fn eq(&self, other: &DeviceComplianceDeviceOverview) -> bool
fn eq(&self, other: &DeviceComplianceDeviceOverview) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for DeviceComplianceDeviceOverview
impl StructuralPartialEq for DeviceComplianceDeviceOverview
Auto Trait Implementations§
impl Freeze for DeviceComplianceDeviceOverview
impl RefUnwindSafe for DeviceComplianceDeviceOverview
impl Send for DeviceComplianceDeviceOverview
impl Sync for DeviceComplianceDeviceOverview
impl Unpin for DeviceComplianceDeviceOverview
impl UnwindSafe for DeviceComplianceDeviceOverview
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