pub enum SecretBackendType {
None,
Vault,
AwsSecretsManager,
AzureKeyVault,
GcpSecretManager,
Kubernetes,
EncryptedFile,
}Expand description
Secret backend provider type
Variants§
None
No secret backend (use environment variables directly)
Vault
HashCorp Vault
AwsSecretsManager
AWS Secrets Manager
AzureKeyVault
Azure Key Vault
GcpSecretManager
Google Cloud Secret Manager
Kubernetes
Kubernetes Secrets
EncryptedFile
Local encrypted file
Trait Implementations§
Source§impl Clone for SecretBackendType
impl Clone for SecretBackendType
Source§fn clone(&self) -> SecretBackendType
fn clone(&self) -> SecretBackendType
Returns a duplicate of the value. Read more
1.0.0 · 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 SecretBackendType
impl Debug for SecretBackendType
Source§impl Default for SecretBackendType
impl Default for SecretBackendType
Source§fn default() -> SecretBackendType
fn default() -> SecretBackendType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretBackendType
impl<'de> Deserialize<'de> for SecretBackendType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SecretBackendType
impl PartialEq for SecretBackendType
Source§impl Serialize for SecretBackendType
impl Serialize for SecretBackendType
impl StructuralPartialEq for SecretBackendType
Auto Trait Implementations§
impl Freeze for SecretBackendType
impl RefUnwindSafe for SecretBackendType
impl Send for SecretBackendType
impl Sync for SecretBackendType
impl Unpin for SecretBackendType
impl UnsafeUnpin for SecretBackendType
impl UnwindSafe for SecretBackendType
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