pub enum SecretBackendDiagnosticKind {
File,
System,
Unknown,
}Expand description
Secret-store backend selected by configuration for a structural diagnostic.
This type deliberately describes only configuration and filesystem shape. It never implies that a provider credential exists.
Variants§
File
The JSON file store is selected.
System
The operating-system credential store is selected.
Unknown
The configured backend value is unsupported.
Trait Implementations§
Source§impl Clone for SecretBackendDiagnosticKind
impl Clone for SecretBackendDiagnosticKind
Source§fn clone(&self) -> SecretBackendDiagnosticKind
fn clone(&self) -> SecretBackendDiagnosticKind
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 SecretBackendDiagnosticKind
Source§impl Debug for SecretBackendDiagnosticKind
impl Debug for SecretBackendDiagnosticKind
impl Eq for SecretBackendDiagnosticKind
impl StructuralPartialEq for SecretBackendDiagnosticKind
Auto Trait Implementations§
impl Freeze for SecretBackendDiagnosticKind
impl RefUnwindSafe for SecretBackendDiagnosticKind
impl Send for SecretBackendDiagnosticKind
impl Sync for SecretBackendDiagnosticKind
impl Unpin for SecretBackendDiagnosticKind
impl UnsafeUnpin for SecretBackendDiagnosticKind
impl UnwindSafe for SecretBackendDiagnosticKind
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