pub enum AuthError {
MissingCode,
MissingState,
InvalidState,
OidcError(String),
TokenExchangeFailed(String),
AuthNotConfigured,
}Expand description
Authentication errors.
Variants§
MissingCode
MissingState
InvalidState
OidcError(String)
TokenExchangeFailed(String)
AuthNotConfigured
Trait Implementations§
Source§impl IntoResponse for AuthError
impl IntoResponse for AuthError
Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for AuthError
impl RefUnwindSafe for AuthError
impl Send for AuthError
impl Sync for AuthError
impl Unpin for AuthError
impl UnsafeUnpin for AuthError
impl UnwindSafe for AuthError
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