pub struct PersistenceEnvelope {
pub trace_id: String,
pub circuit: String,
pub step: u64,
pub outcome_kind: String,
pub timestamp_ms: u64,
pub payload_hash: Option<String>,
}Expand description
Minimal persisted envelope for Axon execution checkpoints.
M148 baseline contract fields:
- trace
- circuit
- step
- outcome
- timestamp
- payload hash
Fields§
§trace_id: String§circuit: String§step: u64§outcome_kind: String§timestamp_ms: u64§payload_hash: Option<String>Trait Implementations§
Source§impl Clone for PersistenceEnvelope
impl Clone for PersistenceEnvelope
Source§fn clone(&self) -> PersistenceEnvelope
fn clone(&self) -> PersistenceEnvelope
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 PersistenceEnvelope
impl Debug for PersistenceEnvelope
Source§impl<'de> Deserialize<'de> for PersistenceEnvelope
impl<'de> Deserialize<'de> for PersistenceEnvelope
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 PersistenceEnvelope
impl PartialEq for PersistenceEnvelope
Source§impl Serialize for PersistenceEnvelope
impl Serialize for PersistenceEnvelope
impl Eq for PersistenceEnvelope
impl StructuralPartialEq for PersistenceEnvelope
Auto Trait Implementations§
impl Freeze for PersistenceEnvelope
impl RefUnwindSafe for PersistenceEnvelope
impl Send for PersistenceEnvelope
impl Sync for PersistenceEnvelope
impl Unpin for PersistenceEnvelope
impl UnsafeUnpin for PersistenceEnvelope
impl UnwindSafe for PersistenceEnvelope
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