pub enum CrossProcessRefreshLockError {
StoreError(CryptoStoreError),
LockError(LockStoreError),
InvalidPreviousHash,
MissingLock,
MissingReloadSession,
DuplicatedLock,
}
Available on crate feature
e2e-encryption
only.Expand description
An error that happened when interacting with the cross-process store lock during a token refresh.
Variants§
StoreError(CryptoStoreError)
Underlying error caused by the store.
LockError(LockStoreError)
The locking itself failed.
InvalidPreviousHash
The previous hash isn’t valid.
MissingLock
The lock hasn’t been set up.
MissingReloadSession
Cross-process lock was set, but without session callbacks.
DuplicatedLock
The store has been created twice.
Trait Implementations§
Source§impl Debug for CrossProcessRefreshLockError
impl Debug for CrossProcessRefreshLockError
Source§impl Error for CrossProcessRefreshLockError
impl Error for CrossProcessRefreshLockError
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<CrossProcessRefreshLockError> for OAuthError
impl From<CrossProcessRefreshLockError> for OAuthError
Source§fn from(source: CrossProcessRefreshLockError) -> Self
fn from(source: CrossProcessRefreshLockError) -> Self
Converts to this type from the input type.
Source§impl From<CrossProcessRefreshLockError> for QRCodeLoginError
impl From<CrossProcessRefreshLockError> for QRCodeLoginError
Source§fn from(source: CrossProcessRefreshLockError) -> Self
fn from(source: CrossProcessRefreshLockError) -> Self
Converts to this type from the input type.
Source§impl From<CryptoStoreError> for CrossProcessRefreshLockError
impl From<CryptoStoreError> for CrossProcessRefreshLockError
Source§fn from(source: CryptoStoreError) -> Self
fn from(source: CryptoStoreError) -> Self
Converts to this type from the input type.
Source§impl From<LockStoreError> for CrossProcessRefreshLockError
impl From<LockStoreError> for CrossProcessRefreshLockError
Source§fn from(source: LockStoreError) -> Self
fn from(source: LockStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CrossProcessRefreshLockError
impl !RefUnwindSafe for CrossProcessRefreshLockError
impl Send for CrossProcessRefreshLockError
impl Sync for CrossProcessRefreshLockError
impl Unpin for CrossProcessRefreshLockError
impl !UnwindSafe for CrossProcessRefreshLockError
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> CompatExt for T
impl<T> CompatExt for T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§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 more