pub struct ExecutionOutcomeWithId {
pub id: CryptoHash,
pub outcome: ExecutionOutcome,
pub proof: Vec<MerklePathItem>,
pub block_hash: CryptoHash,
}Expand description
Execution outcome with ID.
Fields§
§id: CryptoHashReceipt or transaction ID.
outcome: ExecutionOutcomeOutcome details.
proof: Vec<MerklePathItem>Proof of execution.
block_hash: CryptoHashBlock hash where this was executed.
Trait Implementations§
Source§impl Clone for ExecutionOutcomeWithId
impl Clone for ExecutionOutcomeWithId
Source§fn clone(&self) -> ExecutionOutcomeWithId
fn clone(&self) -> ExecutionOutcomeWithId
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 ExecutionOutcomeWithId
impl Debug for ExecutionOutcomeWithId
Source§impl<'de> Deserialize<'de> for ExecutionOutcomeWithId
impl<'de> Deserialize<'de> for ExecutionOutcomeWithId
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 ExecutionOutcomeWithId
impl RefUnwindSafe for ExecutionOutcomeWithId
impl Send for ExecutionOutcomeWithId
impl Sync for ExecutionOutcomeWithId
impl Unpin for ExecutionOutcomeWithId
impl UnsafeUnpin for ExecutionOutcomeWithId
impl UnwindSafe for ExecutionOutcomeWithId
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