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