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