pub enum DecryptMethod<'a> {
None,
GPG,
Custom(&'a mut Command),
}Expand description
Method to decrypt a encoded secret
Variants§
Auto Trait Implementations§
impl<'a> Freeze for DecryptMethod<'a>
impl<'a> !RefUnwindSafe for DecryptMethod<'a>
impl<'a> Send for DecryptMethod<'a>
impl<'a> Sync for DecryptMethod<'a>
impl<'a> Unpin for DecryptMethod<'a>
impl<'a> !UnwindSafe for DecryptMethod<'a>
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