pub enum CredentialStateError {
Unavailable,
}Expand description
Credential-state access failure.
Variants§
The short-lived credential-state lock was poisoned by a panic.
Trait Implementations§
Source§impl Clone for CredentialStateError
impl Clone for CredentialStateError
Source§fn clone(&self) -> CredentialStateError
fn clone(&self) -> CredentialStateError
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 CredentialStateError
Source§impl Debug for CredentialStateError
impl Debug for CredentialStateError
Source§impl Display for CredentialStateError
impl Display for CredentialStateError
impl Eq for CredentialStateError
Source§impl Error for CredentialStateError
impl Error for CredentialStateError
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 PartialEq for CredentialStateError
impl PartialEq for CredentialStateError
impl StructuralPartialEq for CredentialStateError
Auto Trait Implementations§
impl Freeze for CredentialStateError
impl RefUnwindSafe for CredentialStateError
impl Send for CredentialStateError
impl Sync for CredentialStateError
impl Unpin for CredentialStateError
impl UnsafeUnpin for CredentialStateError
impl UnwindSafe for CredentialStateError
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