pub enum AuditAction {
Show 15 variants
Access,
Reveal,
Inject,
Approve,
Deny,
Timeout,
SensitivityDowngrade,
UnattendedDelivery,
Package,
ProviderInvocation,
Create,
Edit,
Delete,
ScopeGrant,
OutOfScopeAttempt,
}Expand description
The kind of action recorded (§11).
Variants§
Access
Access / delivery of a value through an operation.
Reveal
Plaintext revealed (into a context).
Inject
Value injected into a child process.
Approve
A confirmation was approved.
Deny
A confirmation was denied.
Timeout
A confirmation timed out (treated as denial).
SensitivityDowngrade
A secret’s sensitivity was lowered (I5 deliberate, audited downgrade).
UnattendedDelivery
An unattended (token) delivery occurred.
Package
An encrypted package was sealed (L7, §7) — records the env/component scope + entry count, never a value (I12).
ProviderInvocation
An external provider was invoked to materialize a reference.
Create
A secret was created.
Edit
A secret was edited.
Delete
A secret was deleted.
ScopeGrant
An agent scope was granted.
OutOfScopeAttempt
An out-of-scope coordinate was attempted (I13).
Trait Implementations§
Source§impl Clone for AuditAction
impl Clone for AuditAction
Source§fn clone(&self) -> AuditAction
fn clone(&self) -> AuditAction
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 moreimpl Copy for AuditAction
Source§impl Debug for AuditAction
impl Debug for AuditAction
Source§impl<'de> Deserialize<'de> for AuditAction
impl<'de> Deserialize<'de> for AuditAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AuditAction
Source§impl PartialEq for AuditAction
impl PartialEq for AuditAction
Source§fn eq(&self, other: &AuditAction) -> bool
fn eq(&self, other: &AuditAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuditAction
impl Serialize for AuditAction
impl StructuralPartialEq for AuditAction
Auto Trait Implementations§
impl Freeze for AuditAction
impl RefUnwindSafe for AuditAction
impl Send for AuditAction
impl Sync for AuditAction
impl Unpin for AuditAction
impl UnsafeUnpin for AuditAction
impl UnwindSafe for AuditAction
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