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(StoreOutboundError),
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(StoreOutboundError)
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<DeviceJoinError> for BootstrapError
impl From<DeviceJoinError> for BootstrapError
Source§fn from(source: DeviceJoinError) -> Self
fn from(source: DeviceJoinError) -> Self
Converts to this type from the input type.
Source§impl From<DeviceJoinError> for SyncError
impl From<DeviceJoinError> for SyncError
Source§fn from(source: DeviceJoinError) -> Self
fn from(source: DeviceJoinError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for DeviceJoinError
impl From<Error> for DeviceJoinError
Source§fn from(source: Error) -> DeviceJoinError
fn from(source: Error) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<Error> for DeviceJoinError
impl From<Error> for DeviceJoinError
Source§fn from(source: Error) -> DeviceJoinError
fn from(source: Error) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StorageError> for DeviceJoinError
impl From<StorageError> for DeviceJoinError
Source§fn from(source: StorageError) -> DeviceJoinError
fn from(source: StorageError) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StoreObjectError> for DeviceJoinError
impl From<StoreObjectError> for DeviceJoinError
Source§fn from(source: StoreObjectError) -> DeviceJoinError
fn from(source: StoreObjectError) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StoreOutboundError> for DeviceJoinError
impl From<StoreOutboundError> for DeviceJoinError
Source§fn from(source: StoreOutboundError) -> DeviceJoinError
fn from(source: StoreOutboundError) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StoreProtocolError> for DeviceJoinError
impl From<StoreProtocolError> for DeviceJoinError
Source§fn from(source: StoreProtocolError) -> DeviceJoinError
fn from(source: StoreProtocolError) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StorePullError> for DeviceJoinError
impl From<StorePullError> for DeviceJoinError
Source§fn from(source: StorePullError) -> DeviceJoinError
fn from(source: StorePullError) -> DeviceJoinError
Converts to this type from the input type.
Source§impl From<StoreRegistrationError> for DeviceJoinError
impl From<StoreRegistrationError> for DeviceJoinError
Source§fn from(source: StoreRegistrationError) -> DeviceJoinError
fn from(source: StoreRegistrationError) -> DeviceJoinError
Converts to this type from the input type.
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.