pub struct EnrollmentTroubleshootingEvent {
pub managed_device_identifier: String,
pub operating_system: String,
pub os_version: String,
pub user_id: String,
pub device_id: String,
pub enrollment_type: DeviceEnrollmentType,
pub failure_category: DeviceEnrollmentFailureReason,
pub failure_reason: String,
}
Fields§
§managed_device_identifier: String
§operating_system: String
§os_version: String
§user_id: String
§device_id: String
§enrollment_type: DeviceEnrollmentType
§failure_category: DeviceEnrollmentFailureReason
§failure_reason: String
Trait Implementations§
Source§impl Clone for EnrollmentTroubleshootingEvent
impl Clone for EnrollmentTroubleshootingEvent
Source§fn clone(&self) -> EnrollmentTroubleshootingEvent
fn clone(&self) -> EnrollmentTroubleshootingEvent
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 EnrollmentTroubleshootingEvent
impl<'de> Deserialize<'de> for EnrollmentTroubleshootingEvent
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 EnrollmentTroubleshootingEvent
impl PartialEq for EnrollmentTroubleshootingEvent
Source§fn eq(&self, other: &EnrollmentTroubleshootingEvent) -> bool
fn eq(&self, other: &EnrollmentTroubleshootingEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for EnrollmentTroubleshootingEvent
impl StructuralPartialEq for EnrollmentTroubleshootingEvent
Auto Trait Implementations§
impl Freeze for EnrollmentTroubleshootingEvent
impl RefUnwindSafe for EnrollmentTroubleshootingEvent
impl Send for EnrollmentTroubleshootingEvent
impl Sync for EnrollmentTroubleshootingEvent
impl Unpin for EnrollmentTroubleshootingEvent
impl UnwindSafe for EnrollmentTroubleshootingEvent
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