Struct openid_client::OidcClientError
source · pub struct OidcClientError {
pub name: String,
pub error: String,
pub error_description: String,
pub response: Option<Response>,
}Expand description
OidcClientError
Error That will be returned to the end user of this library
Fields§
§name: StringName of the error. One of TypeError, OPError
error: StringShort title of the error
error_description: StringDescription
response: Option<Response>If the error occurred as part of a request, the response field will be available
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for OidcClientError
impl Send for OidcClientError
impl Sync for OidcClientError
impl Unpin for OidcClientError
impl UnwindSafe for OidcClientError
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