pub enum RefreshInitError {
MissingField(&'static str),
CreateOpensslHttpsConnector(ErrorStack),
NoValidNativeRootCA,
}
Available on crate features
client
and oidc
only.Expand description
Possible error when initializing the ID token refreshing.
Variants§
MissingField(&'static str)
Missing field in the configuration.
CreateOpensslHttpsConnector(ErrorStack)
Available on crate feature
openssl-tls
only.Failed to create an HTTPS client.
NoValidNativeRootCA
No valid native root CA certificates found
Trait Implementations§
source§impl Clone for RefreshInitError
impl Clone for RefreshInitError
source§fn clone(&self) -> RefreshInitError
fn clone(&self) -> RefreshInitError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RefreshInitError
impl Debug for RefreshInitError
source§impl Display for RefreshInitError
impl Display for RefreshInitError
source§impl Error for RefreshInitError
impl Error for RefreshInitError
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<ErrorStack> for RefreshInitError
impl From<ErrorStack> for RefreshInitError
source§fn from(source: ErrorStack) -> Self
fn from(source: ErrorStack) -> Self
Converts to this type from the input type.
source§impl From<RefreshInitError> for Error
impl From<RefreshInitError> for Error
source§fn from(source: RefreshInitError) -> Self
fn from(source: RefreshInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RefreshInitError
impl RefUnwindSafe for RefreshInitError
impl Send for RefreshInitError
impl Sync for RefreshInitError
impl Unpin for RefreshInitError
impl UnwindSafe for RefreshInitError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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 more