pub struct UserInstallStateSummary {
pub user_name: String,
pub installed_device_count: i32,
pub failed_device_count: i32,
pub not_installed_device_count: i32,
pub device_states: Vec<DeviceInstallState>,
}
Fields§
§user_name: String
§installed_device_count: i32
§failed_device_count: i32
§not_installed_device_count: i32
§device_states: Vec<DeviceInstallState>
Trait Implementations§
Source§impl Clone for UserInstallStateSummary
impl Clone for UserInstallStateSummary
Source§fn clone(&self) -> UserInstallStateSummary
fn clone(&self) -> UserInstallStateSummary
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 UserInstallStateSummary
impl Debug for UserInstallStateSummary
Source§impl<'de> Deserialize<'de> for UserInstallStateSummary
impl<'de> Deserialize<'de> for UserInstallStateSummary
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 UserInstallStateSummary
impl PartialEq for UserInstallStateSummary
Source§impl Serialize for UserInstallStateSummary
impl Serialize for UserInstallStateSummary
impl Eq for UserInstallStateSummary
impl StructuralPartialEq for UserInstallStateSummary
Auto Trait Implementations§
impl Freeze for UserInstallStateSummary
impl RefUnwindSafe for UserInstallStateSummary
impl Send for UserInstallStateSummary
impl Sync for UserInstallStateSummary
impl Unpin for UserInstallStateSummary
impl UnwindSafe for UserInstallStateSummary
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