pub struct TransactionReceiptResult {
pub valid: bool,
pub error_reason: String,
pub party_results: Vec<VerifyResult>,
}Expand description
Outcome of verify_transaction_receipt.
Fields§
§valid: bool§error_reason: String§party_results: Vec<VerifyResult>Auto Trait Implementations§
impl Freeze for TransactionReceiptResult
impl RefUnwindSafe for TransactionReceiptResult
impl Send for TransactionReceiptResult
impl Sync for TransactionReceiptResult
impl Unpin for TransactionReceiptResult
impl UnsafeUnpin for TransactionReceiptResult
impl UnwindSafe for TransactionReceiptResult
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