pub enum AuthProxyError {
B64DecodeError(DecodeError),
JwtError(Error),
NoCookiesHeader(),
NoAuthorizationCookie(),
StrError(ToStrError),
Other(Error),
}
Variants§
B64DecodeError(DecodeError)
JwtError(Error)
NoCookiesHeader()
NoAuthorizationCookie()
StrError(ToStrError)
Other(Error)
Trait Implementations§
Source§impl Debug for AuthProxyError
impl Debug for AuthProxyError
Source§impl Display for AuthProxyError
impl Display for AuthProxyError
Source§impl Error for AuthProxyError
impl Error for AuthProxyError
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<DecodeError> for AuthProxyError
impl From<DecodeError> for AuthProxyError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for AuthProxyError
impl From<Error> for AuthProxyError
Source§impl From<Error> for AuthProxyError
impl From<Error> for AuthProxyError
Source§impl From<ToStrError> for AuthProxyError
impl From<ToStrError> for AuthProxyError
Source§fn from(source: ToStrError) -> Self
fn from(source: ToStrError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthProxyError
impl !RefUnwindSafe for AuthProxyError
impl Send for AuthProxyError
impl Sync for AuthProxyError
impl Unpin for AuthProxyError
impl !UnwindSafe for AuthProxyError
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