pub enum CrossProcessRefreshLockError {
StoreError(CryptoStoreError),
LockError(LockStoreError),
InvalidPreviousHash,
MissingLock,
MissingReloadSession,
InvalidSessionTokens,
DuplicatedLock,
}
Available on crate feature
experimental-oidc
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.
InvalidSessionTokens
Session tokens returned by the reload_session callback were not for OIDC.
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)>
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 OidcError
impl From<CrossProcessRefreshLockError> for OidcError
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 crate feature e2e-encryption
and non-WebAssembly only.
impl From<CrossProcessRefreshLockError> for QRCodeLoginError
Available on crate feature
e2e-encryption
and 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
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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