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