pub enum ReqwestAuthError {
ReqwestError(ReqwestError),
UidParseError(String),
}
Variants§
ReqwestError(ReqwestError)
UidParseError(String)
An error occured while parsing the uid
field from the authenticate
response
Trait Implementations§
Source§impl Debug for ReqwestAuthError
impl Debug for ReqwestAuthError
Source§impl Display for ReqwestAuthError
impl Display for ReqwestAuthError
Source§impl Error for ReqwestAuthError
impl Error for ReqwestAuthError
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<AuthenticationError> for ReqwestAuthError
impl From<AuthenticationError> for ReqwestAuthError
Source§fn from(value: AuthenticationError) -> Self
fn from(value: AuthenticationError) -> Self
Converts to this type from the input type.
Source§impl From<ReqwestAuthError> for Error
impl From<ReqwestAuthError> for Error
Source§fn from(value: ReqwestAuthError) -> Self
fn from(value: ReqwestAuthError) -> Self
Converts to this type from the input type.
Source§impl From<ReqwestError> for ReqwestAuthError
impl From<ReqwestError> for ReqwestAuthError
Source§fn from(source: ReqwestError) -> Self
fn from(source: ReqwestError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReqwestAuthError
impl !RefUnwindSafe for ReqwestAuthError
impl Send for ReqwestAuthError
impl Sync for ReqwestAuthError
impl Unpin for ReqwestAuthError
impl !UnwindSafe for ReqwestAuthError
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