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