pub enum DeviceEnrollmentFailureReason {
UserAbandonment,
ClientDisconnected,
EnrollmentRestrictionsEnforced,
FeatureNotSupported,
BadRequest,
InMaintenance,
DeviceNotSupported,
UserValidation,
AccountValidation,
Authorization,
Authentication,
Unknown,
}
Variants§
UserAbandonment
ClientDisconnected
EnrollmentRestrictionsEnforced
FeatureNotSupported
BadRequest
InMaintenance
DeviceNotSupported
UserValidation
AccountValidation
Authorization
Authentication
Unknown
Trait Implementations§
Source§impl Clone for DeviceEnrollmentFailureReason
impl Clone for DeviceEnrollmentFailureReason
Source§fn clone(&self) -> DeviceEnrollmentFailureReason
fn clone(&self) -> DeviceEnrollmentFailureReason
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 DeviceEnrollmentFailureReason
impl<'de> Deserialize<'de> for DeviceEnrollmentFailureReason
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 Hash for DeviceEnrollmentFailureReason
impl Hash for DeviceEnrollmentFailureReason
Source§impl Ord for DeviceEnrollmentFailureReason
impl Ord for DeviceEnrollmentFailureReason
Source§fn cmp(&self, other: &DeviceEnrollmentFailureReason) -> Ordering
fn cmp(&self, other: &DeviceEnrollmentFailureReason) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeviceEnrollmentFailureReason
impl PartialEq for DeviceEnrollmentFailureReason
Source§fn eq(&self, other: &DeviceEnrollmentFailureReason) -> bool
fn eq(&self, other: &DeviceEnrollmentFailureReason) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DeviceEnrollmentFailureReason
impl PartialOrd for DeviceEnrollmentFailureReason
impl Eq for DeviceEnrollmentFailureReason
impl StructuralPartialEq for DeviceEnrollmentFailureReason
Auto Trait Implementations§
impl Freeze for DeviceEnrollmentFailureReason
impl RefUnwindSafe for DeviceEnrollmentFailureReason
impl Send for DeviceEnrollmentFailureReason
impl Sync for DeviceEnrollmentFailureReason
impl Unpin for DeviceEnrollmentFailureReason
impl UnwindSafe for DeviceEnrollmentFailureReason
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