pub enum GetMicrosoftAuthTokenError {
Http(Error),
Timeout,
}
Variants§
Trait Implementations§
Source§impl Debug for GetMicrosoftAuthTokenError
impl Debug for GetMicrosoftAuthTokenError
Source§impl Display for GetMicrosoftAuthTokenError
impl Display for GetMicrosoftAuthTokenError
Source§impl Error for GetMicrosoftAuthTokenError
impl Error for GetMicrosoftAuthTokenError
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<Error> for GetMicrosoftAuthTokenError
impl From<Error> for GetMicrosoftAuthTokenError
Source§impl From<GetMicrosoftAuthTokenError> for AuthError
impl From<GetMicrosoftAuthTokenError> for AuthError
Source§fn from(source: GetMicrosoftAuthTokenError) -> Self
fn from(source: GetMicrosoftAuthTokenError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMicrosoftAuthTokenError
impl !RefUnwindSafe for GetMicrosoftAuthTokenError
impl Send for GetMicrosoftAuthTokenError
impl Sync for GetMicrosoftAuthTokenError
impl Unpin for GetMicrosoftAuthTokenError
impl !UnwindSafe for GetMicrosoftAuthTokenError
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