pub struct FlowReceipt {
pub receipt_id: Uuid,
pub flow_name: String,
pub flow_hash: [u8; 32],
pub steps_executed: Vec<FlowStepReceipt>,
pub started_at: DateTime<Utc>,
pub completed_at: Option<DateTime<Utc>>,
pub final_status: FlowStatus,
}Expand description
Flow execution receipt (Feedback #6 - audit trail)
Fields§
§receipt_id: Uuid§flow_name: String§flow_hash: [u8; 32]§steps_executed: Vec<FlowStepReceipt>§started_at: DateTime<Utc>§completed_at: Option<DateTime<Utc>>§final_status: FlowStatusTrait Implementations§
Source§impl Clone for FlowReceipt
impl Clone for FlowReceipt
Source§fn clone(&self) -> FlowReceipt
fn clone(&self) -> FlowReceipt
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 FlowReceipt
impl Debug for FlowReceipt
Source§impl<'de> Deserialize<'de> for FlowReceipt
impl<'de> Deserialize<'de> for FlowReceipt
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
Auto Trait Implementations§
impl Freeze for FlowReceipt
impl RefUnwindSafe for FlowReceipt
impl Send for FlowReceipt
impl Sync for FlowReceipt
impl Unpin for FlowReceipt
impl UnwindSafe for FlowReceipt
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