pub enum NativeCredentialSecret {
Env {
name: String,
},
Plaintext {
value: Zeroizing<String>,
},
}Expand description
ADR-0051 credential boundary: manual-redaction
Variants§
Trait Implementations§
Source§impl Clone for NativeCredentialSecret
impl Clone for NativeCredentialSecret
Auto Trait Implementations§
impl Freeze for NativeCredentialSecret
impl RefUnwindSafe for NativeCredentialSecret
impl Send for NativeCredentialSecret
impl Sync for NativeCredentialSecret
impl Unpin for NativeCredentialSecret
impl UnsafeUnpin for NativeCredentialSecret
impl UnwindSafe for NativeCredentialSecret
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