pub struct ReplayAuditAction {
pub action: String,
pub role: String,
pub input_lane: String,
pub output_lane: String,
pub stage: String,
pub target: String,
pub decision: String,
}Expand description
Audit record for a discovered side-effect action in the spec.
Fields§
§action: StringAction name (e.g. http_post, exec).
role: StringRole name in the spec, if applicable.
input_lane: StringInput lane name (rx), if applicable.
output_lane: StringOutput lane name (tx), if applicable.
stage: StringFull stage identity string from the spec.
target: StringParsed target fields for greppable audit.
decision: StringPolicy decision string (stable-ish).
Trait Implementations§
Source§impl Clone for ReplayAuditAction
impl Clone for ReplayAuditAction
Source§fn clone(&self) -> ReplayAuditAction
fn clone(&self) -> ReplayAuditAction
Returns a duplicate of the value. Read more
1.0.0 · 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 ReplayAuditAction
impl Debug for ReplayAuditAction
Source§impl<'de> Deserialize<'de> for ReplayAuditAction
impl<'de> Deserialize<'de> for ReplayAuditAction
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
Source§impl PartialEq for ReplayAuditAction
impl PartialEq for ReplayAuditAction
Source§impl Serialize for ReplayAuditAction
impl Serialize for ReplayAuditAction
impl Eq for ReplayAuditAction
impl StructuralPartialEq for ReplayAuditAction
Auto Trait Implementations§
impl Freeze for ReplayAuditAction
impl RefUnwindSafe for ReplayAuditAction
impl Send for ReplayAuditAction
impl Sync for ReplayAuditAction
impl Unpin for ReplayAuditAction
impl UnwindSafe for ReplayAuditAction
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