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
Available on non-WebAssembly only.
impl From<CrossProcessRefreshLockError> for QRCodeLoginError
Available on non-WebAssembly only.
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
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.