pub struct HarnessReplayReceipt {
pub receipt_id: String,
pub harness_id: String,
pub state: String,
pub disposition: ClosureDisposition,
pub reason_code: String,
pub act_ids: Vec<String>,
pub decision_ids: Vec<String>,
pub child_receipt_refs: Vec<String>,
pub verification_refs: Vec<String>,
}Fields§
§receipt_id: String§harness_id: String§state: String§disposition: ClosureDisposition§reason_code: String§act_ids: Vec<String>§decision_ids: Vec<String>§child_receipt_refs: Vec<String>§verification_refs: Vec<String>Trait Implementations§
Source§impl Clone for HarnessReplayReceipt
impl Clone for HarnessReplayReceipt
Source§fn clone(&self) -> HarnessReplayReceipt
fn clone(&self) -> HarnessReplayReceipt
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 moreSource§impl Debug for HarnessReplayReceipt
impl Debug for HarnessReplayReceipt
Source§impl PartialEq for HarnessReplayReceipt
impl PartialEq for HarnessReplayReceipt
Source§fn eq(&self, other: &HarnessReplayReceipt) -> bool
fn eq(&self, other: &HarnessReplayReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HarnessReplayReceipt
Auto Trait Implementations§
impl Freeze for HarnessReplayReceipt
impl RefUnwindSafe for HarnessReplayReceipt
impl Send for HarnessReplayReceipt
impl Sync for HarnessReplayReceipt
impl Unpin for HarnessReplayReceipt
impl UnsafeUnpin for HarnessReplayReceipt
impl UnwindSafe for HarnessReplayReceipt
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