pub enum LogoutInternalErrorKind {
Url,
SerDe,
Http,
}Expand description
The internal failure kinds a logout request can surface.
Private vocabulary for this RPC (mirrors id_token’s), covering only the kinds this path
actually produces.
Variants§
Url
Failed to build/parse a URL for the request.
SerDe
Failed to serialize the request body.
Http
An unsuccessful (non-2xx) HTTP request, or an HTTP/transport error not classed as transient.
Trait Implementations§
Source§impl Clone for LogoutInternalErrorKind
impl Clone for LogoutInternalErrorKind
Source§fn clone(&self) -> LogoutInternalErrorKind
fn clone(&self) -> LogoutInternalErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LogoutInternalErrorKind
Source§impl Debug for LogoutInternalErrorKind
impl Debug for LogoutInternalErrorKind
Source§impl Display for LogoutInternalErrorKind
impl Display for LogoutInternalErrorKind
impl Eq for LogoutInternalErrorKind
Source§impl PartialEq for LogoutInternalErrorKind
impl PartialEq for LogoutInternalErrorKind
Source§fn eq(&self, other: &LogoutInternalErrorKind) -> bool
fn eq(&self, other: &LogoutInternalErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogoutInternalErrorKind
Auto Trait Implementations§
impl Freeze for LogoutInternalErrorKind
impl RefUnwindSafe for LogoutInternalErrorKind
impl Send for LogoutInternalErrorKind
impl Sync for LogoutInternalErrorKind
impl Unpin for LogoutInternalErrorKind
impl UnsafeUnpin for LogoutInternalErrorKind
impl UnwindSafe for LogoutInternalErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.