pub struct ExternalDecryptPlan {
pub engine: DecryptionEngine,
pub program: PathBuf,
pub redacted_arguments: String,
pub work_dir: Option<PathBuf>,
pub requires_init_concat: bool,
}Expand description
Redacted external decrypt command plan.
Fields§
§engine: DecryptionEngineRequested decrypt engine.
program: PathBufProgram path.
redacted_arguments: StringRedacted command arguments suitable for logs and diagnostics.
work_dir: Option<PathBuf>Optional working directory.
requires_init_concat: boolWhether source and init must be concatenated before running the engine.
Trait Implementations§
Source§impl Clone for ExternalDecryptPlan
impl Clone for ExternalDecryptPlan
Source§fn clone(&self) -> ExternalDecryptPlan
fn clone(&self) -> ExternalDecryptPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExternalDecryptPlan
impl Debug for ExternalDecryptPlan
impl Eq for ExternalDecryptPlan
Source§impl PartialEq for ExternalDecryptPlan
impl PartialEq for ExternalDecryptPlan
Source§fn eq(&self, other: &ExternalDecryptPlan) -> bool
fn eq(&self, other: &ExternalDecryptPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExternalDecryptPlan
Auto Trait Implementations§
impl Freeze for ExternalDecryptPlan
impl RefUnwindSafe for ExternalDecryptPlan
impl Send for ExternalDecryptPlan
impl Sync for ExternalDecryptPlan
impl Unpin for ExternalDecryptPlan
impl UnsafeUnpin for ExternalDecryptPlan
impl UnwindSafe for ExternalDecryptPlan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.