pub struct DeviceInstallState {
pub device_name: String,
pub device_id: String,
pub last_sync_date_time: String,
pub install_state: InstallState,
pub error_code: String,
pub os_version: String,
pub os_description: String,
pub user_name: String,
}
Fields§
§device_name: String
§device_id: String
§last_sync_date_time: String
§install_state: InstallState
§error_code: String
§os_version: String
§os_description: String
§user_name: String
Trait Implementations§
Source§impl Clone for DeviceInstallState
impl Clone for DeviceInstallState
Source§fn clone(&self) -> DeviceInstallState
fn clone(&self) -> DeviceInstallState
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 DeviceInstallState
impl Debug for DeviceInstallState
Source§impl<'de> Deserialize<'de> for DeviceInstallState
impl<'de> Deserialize<'de> for DeviceInstallState
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 DeviceInstallState
impl PartialEq for DeviceInstallState
Source§impl Serialize for DeviceInstallState
impl Serialize for DeviceInstallState
impl Eq for DeviceInstallState
impl StructuralPartialEq for DeviceInstallState
Auto Trait Implementations§
impl Freeze for DeviceInstallState
impl RefUnwindSafe for DeviceInstallState
impl Send for DeviceInstallState
impl Sync for DeviceInstallState
impl Unpin for DeviceInstallState
impl UnwindSafe for DeviceInstallState
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