pub struct PlatformSecretStoreStatus {
pub supported: bool,
pub disabled: bool,
pub scope: AutoOpenScope,
pub backend: &'static str,
pub item: String,
}Expand description
Current platform secret-store state for the default local vault.
Fields§
§supported: boolWhether the current target has a compiled platform secret-store backend.
disabled: boolWhether platform secret-store use is disabled by environment or marker.
scope: AutoOpenScopeAuto-open scope configured for this vault.
backend: &'static strHuman-readable backend label.
item: StringDefault local vault item key used in the platform store.
Trait Implementations§
Source§impl Clone for PlatformSecretStoreStatus
impl Clone for PlatformSecretStoreStatus
Source§fn clone(&self) -> PlatformSecretStoreStatus
fn clone(&self) -> PlatformSecretStoreStatus
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 PlatformSecretStoreStatus
impl Debug for PlatformSecretStoreStatus
impl Eq for PlatformSecretStoreStatus
impl StructuralPartialEq for PlatformSecretStoreStatus
Auto Trait Implementations§
impl Freeze for PlatformSecretStoreStatus
impl RefUnwindSafe for PlatformSecretStoreStatus
impl Send for PlatformSecretStoreStatus
impl Sync for PlatformSecretStoreStatus
impl Unpin for PlatformSecretStoreStatus
impl UnsafeUnpin for PlatformSecretStoreStatus
impl UnwindSafe for PlatformSecretStoreStatus
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