pub enum SecretAction {
Decrypt {
source: PathBuf,
target: PathBuf,
backend: String,
origin: String,
},
Resolve {
provider: String,
reference: String,
target: PathBuf,
origin: String,
},
ResolveEnv {
provider: String,
reference: String,
envs: Vec<String>,
origin: String,
},
Skip {
source: String,
reason: String,
origin: String,
},
}Variants§
Decrypt
Resolve
ResolveEnv
Resolve a secret and inject its value as environment variables into the
managed shell env file (~/.cfgd.env, ~/.cfgd-env.ps1, fish conf.d).
Skip
Trait Implementations§
Source§impl Debug for SecretAction
impl Debug for SecretAction
Auto Trait Implementations§
impl Freeze for SecretAction
impl RefUnwindSafe for SecretAction
impl Send for SecretAction
impl Sync for SecretAction
impl Unpin for SecretAction
impl UnsafeUnpin for SecretAction
impl UnwindSafe for SecretAction
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