pub enum DeviceJoinError {
Show 28 variants
InvalidSignature,
OfferMismatch,
ApprovalMismatch,
RegistrationRequestMismatch,
AttemptMismatch,
CleanupMismatch,
NonAdjacentJournalTransition,
JournalConflict,
PendingTransferHashMismatch,
DuplicateReservedSlot,
MemberNotEligible,
Provider(String),
Store(String),
ActiveDeviceRequired,
OwnerAuthorityRequired,
ProviderAdministratorRequired,
MembershipConflict,
ExactSlotStorageRequired,
ApprovalActivationMissing,
ActivationNotMaterialized,
Object(StoreObjectError),
Registration(StoreRegistrationError),
Pull(StorePullError),
Outbound(StoreError),
Protocol(StoreProtocolError),
Storage(StorageError),
Database(Error),
Serialization(Error),
}Variants§
InvalidSignature
OfferMismatch
ApprovalMismatch
RegistrationRequestMismatch
AttemptMismatch
CleanupMismatch
NonAdjacentJournalTransition
JournalConflict
PendingTransferHashMismatch
DuplicateReservedSlot
MemberNotEligible
Provider(String)
Store(String)
ActiveDeviceRequired
OwnerAuthorityRequired
ProviderAdministratorRequired
MembershipConflict
ExactSlotStorageRequired
ApprovalActivationMissing
ActivationNotMaterialized
Object(StoreObjectError)
Registration(StoreRegistrationError)
Pull(StorePullError)
Outbound(StoreError)
Protocol(StoreProtocolError)
Storage(StorageError)
Database(Error)
Serialization(Error)
Trait Implementations§
Source§impl Debug for DeviceJoinError
impl Debug for DeviceJoinError
Source§impl Display for DeviceJoinError
impl Display for DeviceJoinError
Source§impl Error for DeviceJoinError
impl Error for DeviceJoinError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for DeviceJoinError
impl From<Error> for DeviceJoinError
Auto Trait Implementations§
impl Freeze for DeviceJoinError
impl !RefUnwindSafe for DeviceJoinError
impl Send for DeviceJoinError
impl Sync for DeviceJoinError
impl Unpin for DeviceJoinError
impl UnsafeUnpin for DeviceJoinError
impl !UnwindSafe for DeviceJoinError
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