pub enum Operation {
Metadata,
Inject,
Reveal,
Write,
}Expand description
What an operation does with a secret’s value.
Variants§
Metadata
List / status / fingerprint — no value touched.
Inject
Deliver a value through an operation; the value never returns to the caller’s context (injection into a child process).
Reveal
Return plaintext into the caller’s context.
Write
Mutate the vault — create/update/delete a record or edit its metadata. No
value flows to the caller, but the store changes, so a genuinely
read-only session must be able to withhold it (I13). A scope without
Write is read-only: every mutating tool is refused as unaddressable.
Trait Implementations§
impl Copy for Operation
impl Eq for Operation
Source§impl Ord for Operation
impl Ord for Operation
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Operation
impl PartialOrd for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnsafeUnpin for Operation
impl UnwindSafe for Operation
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