pub struct Substitution {
pub path: String,
pub argv_index: usize,
pub strategy: SubstitutionStrategy,
}Expand description
Per-substitution audit entry. Surfaced through
RewritePlan::substitutions so callers can log routing
decisions without reaching into the secret values.
Fields§
§path: StringPath portion of the original @secret:<path> alias.
argv_index: usizeIndex in the input argv where the alias appeared.
strategy: SubstitutionStrategyStrategy chosen for this alias.
Trait Implementations§
Source§impl Clone for Substitution
impl Clone for Substitution
Source§fn clone(&self) -> Substitution
fn clone(&self) -> Substitution
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 Substitution
impl Debug for Substitution
impl Eq for Substitution
Source§impl PartialEq for Substitution
impl PartialEq for Substitution
Source§fn eq(&self, other: &Substitution) -> bool
fn eq(&self, other: &Substitution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Substitution
Auto Trait Implementations§
impl Freeze for Substitution
impl RefUnwindSafe for Substitution
impl Send for Substitution
impl Sync for Substitution
impl Unpin for Substitution
impl UnsafeUnpin for Substitution
impl UnwindSafe for Substitution
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
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.