pub struct ReplayAudit {
pub audit_v: u32,
pub created_unix_ms: u128,
pub bundle_dir: String,
pub spec_sha256: String,
pub input: ReplayAuditInput,
pub policy: ReplayAuditPolicy,
pub actions: Vec<ReplayAuditAction>,
}Expand description
Replay audit artifact (v1).
Fields§
§audit_v: u32Audit schema version.
created_unix_ms: u128Unix timestamp in milliseconds.
bundle_dir: StringBundle directory path (as provided).
spec_sha256: StringSpec SHA-256 digest of canonical spec.kv bytes.
input: ReplayAuditInputReplay inputs summary.
policy: ReplayAuditPolicyPolicy context and derived decisions.
actions: Vec<ReplayAuditAction>Side-effecting actions discovered in the spec.
Trait Implementations§
Source§impl Clone for ReplayAudit
impl Clone for ReplayAudit
Source§fn clone(&self) -> ReplayAudit
fn clone(&self) -> ReplayAudit
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 ReplayAudit
impl Debug for ReplayAudit
Source§impl<'de> Deserialize<'de> for ReplayAudit
impl<'de> Deserialize<'de> for ReplayAudit
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 ReplayAudit
impl PartialEq for ReplayAudit
Source§impl Serialize for ReplayAudit
impl Serialize for ReplayAudit
impl Eq for ReplayAudit
impl StructuralPartialEq for ReplayAudit
Auto Trait Implementations§
impl Freeze for ReplayAudit
impl RefUnwindSafe for ReplayAudit
impl Send for ReplayAudit
impl Sync for ReplayAudit
impl Unpin for ReplayAudit
impl UnwindSafe for ReplayAudit
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