pub enum SecretInjectionTarget {
EnvVar(String),
File {
path: String,
mode: Option<String>,
},
}Expand description
Where a secret should be injected.
Variants§
Trait Implementations§
Source§impl Clone for SecretInjectionTarget
impl Clone for SecretInjectionTarget
Source§fn clone(&self) -> SecretInjectionTarget
fn clone(&self) -> SecretInjectionTarget
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 SecretInjectionTarget
impl Debug for SecretInjectionTarget
Source§impl PartialEq for SecretInjectionTarget
impl PartialEq for SecretInjectionTarget
impl StructuralPartialEq for SecretInjectionTarget
Auto Trait Implementations§
impl Freeze for SecretInjectionTarget
impl RefUnwindSafe for SecretInjectionTarget
impl Send for SecretInjectionTarget
impl Sync for SecretInjectionTarget
impl Unpin for SecretInjectionTarget
impl UnwindSafe for SecretInjectionTarget
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