pub struct CredentialReadError {
pub kind: CredentialReadFailureKind,
pub message: String,
}Expand description
One terminal authoritative-read failure.
Fields§
§kind: CredentialReadFailureKind§message: StringTrait Implementations§
Source§impl Clone for CredentialReadError
impl Clone for CredentialReadError
Source§fn clone(&self) -> CredentialReadError
fn clone(&self) -> CredentialReadError
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 moreSource§impl Debug for CredentialReadError
impl Debug for CredentialReadError
Source§impl Display for CredentialReadError
impl Display for CredentialReadError
impl Eq for CredentialReadError
Source§impl Error for CredentialReadError
impl Error for CredentialReadError
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<SecretError> for CredentialReadError
impl From<SecretError> for CredentialReadError
Source§fn from(error: SecretError) -> Self
fn from(error: SecretError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CredentialReadError
impl PartialEq for CredentialReadError
impl StructuralPartialEq for CredentialReadError
Auto Trait Implementations§
impl Freeze for CredentialReadError
impl RefUnwindSafe for CredentialReadError
impl Send for CredentialReadError
impl Sync for CredentialReadError
impl Unpin for CredentialReadError
impl UnsafeUnpin for CredentialReadError
impl UnwindSafe for CredentialReadError
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