pub enum Oauth2V3UserInfoEndpointError {
MakeRequestFailed(HttpError),
DeResponseBodyFailed(SerdeJsonError),
}
Variants§
MakeRequestFailed(HttpError)
DeResponseBodyFailed(SerdeJsonError)
Trait Implementations§
Source§impl Error for Oauth2V3UserInfoEndpointError
impl Error for Oauth2V3UserInfoEndpointError
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()
Source§impl From<Oauth2V3UserInfoEndpointError> for EndpointParseResponseError
impl From<Oauth2V3UserInfoEndpointError> for EndpointParseResponseError
Source§fn from(err: Oauth2V3UserInfoEndpointError) -> Self
fn from(err: Oauth2V3UserInfoEndpointError) -> Self
Converts to this type from the input type.
Source§impl From<Oauth2V3UserInfoEndpointError> for EndpointRenderRequestError
impl From<Oauth2V3UserInfoEndpointError> for EndpointRenderRequestError
Source§fn from(err: Oauth2V3UserInfoEndpointError) -> Self
fn from(err: Oauth2V3UserInfoEndpointError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Oauth2V3UserInfoEndpointError
impl !RefUnwindSafe for Oauth2V3UserInfoEndpointError
impl Send for Oauth2V3UserInfoEndpointError
impl Sync for Oauth2V3UserInfoEndpointError
impl Unpin for Oauth2V3UserInfoEndpointError
impl !UnwindSafe for Oauth2V3UserInfoEndpointError
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