[−][src]Enum http_auth_basic::AuthBasicError
Authorization Header Error
Variants
The HTTP Authorization header value is invalid
InvalidScheme(String)The HTTP Authorization header contains a valid
value but the scheme is other than Basic
InvalidBase64Value(String)The value expected as a base64 encoded String is not
encoded correctly
InvalidUTF8Value(String)The provided binary is not a valid UTF-8 character
Trait Implementations
impl Debug for AuthBasicError[src]
impl Display for AuthBasicError[src]
impl From<DecodeError> for AuthBasicError[src]
fn from(decode_error: DecodeError) -> Self[src]
impl From<FromUtf8Error> for AuthBasicError[src]
fn from(utf8_err: FromUtf8Error) -> Self[src]
Auto Trait Implementations
impl RefUnwindSafe for AuthBasicError
impl Send for AuthBasicError
impl Sync for AuthBasicError
impl Unpin for AuthBasicError
impl UnwindSafe for AuthBasicError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,