Enum ecksport_core::errors::AuthError
source · pub enum AuthError {
MalformedResp,
InvalidResp,
Unsupported,
}Variants§
MalformedResp
If we can determine it was incorrectly formatted, which might mean we’re unknowingly trying to use incompatible schemes.
InvalidResp
Response to the challenge was invalid, which probably means we’re using at least a superficially compatible scheme but they’re trying to lie to us or something is misconfigured.
Unsupported
Trait Implementations§
source§impl Error for AuthError
impl Error for AuthError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for AuthError
impl RefUnwindSafe for AuthError
impl Send for AuthError
impl Sync for AuthError
impl Unpin 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