#[non_exhaustive]pub enum AuthTokenScopeError {
MissingAuthData,
MissingScope,
ProjectBuild {
source: ProjectBuilderError,
},
ProjectDomainBuild {
source: ProjectDomainBuilderError,
},
ScopeDomainBuild {
source: ScopeDomainBuilderError,
},
ScopeBuild {
source: ScopeBuilderError,
},
}Expand description
AuthToken (X-Auth-Token) Scope based auth errors
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MissingAuthData
Auth data is missing in the config
MissingScope
Scope cannot be built
ProjectBuild
Project scope builder error
Fields
§
source: ProjectBuilderErrorThe error source
ProjectDomainBuild
Domain of the project scope cannot be build
Fields
§
source: ProjectDomainBuilderErrorThe error source
ScopeDomainBuild
Scope Domain cannot be build
Fields
§
source: ScopeDomainBuilderErrorThe error source
ScopeBuild
Scope data cannot be build
Fields
§
source: ScopeBuilderErrorThe error source
Trait Implementations§
source§impl Debug for AuthTokenScopeError
impl Debug for AuthTokenScopeError
source§impl Display for AuthTokenScopeError
impl Display for AuthTokenScopeError
source§impl Error for AuthTokenScopeError
impl Error for AuthTokenScopeError
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<AuthTokenScopeError> for AuthError
impl From<AuthTokenScopeError> for AuthError
source§fn from(source: AuthTokenScopeError) -> Self
fn from(source: AuthTokenScopeError) -> Self
Converts to this type from the input type.
source§impl From<AuthTokenScopeError> for AuthTokenError
impl From<AuthTokenScopeError> for AuthTokenError
source§fn from(source: AuthTokenScopeError) -> Self
fn from(source: AuthTokenScopeError) -> Self
Converts to this type from the input type.
source§impl From<AuthTokenScopeError> for OpenStackError
impl From<AuthTokenScopeError> for OpenStackError
source§fn from(source: AuthTokenScopeError) -> Self
fn from(source: AuthTokenScopeError) -> Self
Converts to this type from the input type.
source§impl From<ProjectBuilderError> for AuthTokenScopeError
impl From<ProjectBuilderError> for AuthTokenScopeError
source§fn from(source: ProjectBuilderError) -> Self
fn from(source: ProjectBuilderError) -> Self
Converts to this type from the input type.
source§impl From<ProjectDomainBuilderError> for AuthTokenScopeError
impl From<ProjectDomainBuilderError> for AuthTokenScopeError
source§fn from(source: ProjectDomainBuilderError) -> Self
fn from(source: ProjectDomainBuilderError) -> Self
Converts to this type from the input type.
source§impl From<ScopeBuilderError> for AuthTokenScopeError
impl From<ScopeBuilderError> for AuthTokenScopeError
source§fn from(source: ScopeBuilderError) -> Self
fn from(source: ScopeBuilderError) -> Self
Converts to this type from the input type.
source§impl From<ScopeDomainBuilderError> for AuthTokenScopeError
impl From<ScopeDomainBuilderError> for AuthTokenScopeError
source§fn from(source: ScopeDomainBuilderError) -> Self
fn from(source: ScopeDomainBuilderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthTokenScopeError
impl RefUnwindSafe for AuthTokenScopeError
impl Send for AuthTokenScopeError
impl Sync for AuthTokenScopeError
impl Unpin for AuthTokenScopeError
impl UnwindSafe for AuthTokenScopeError
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> 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