pub struct ExecutionOutcomeWithIdView {
pub block_hash: CryptoHash,
pub id: CryptoHash,
pub outcome: ExecutionOutcomeView,
pub proof: Vec<MerklePathItem>,
}
Expand description
ExecutionOutcomeWithIdView
JSON schema
{
"type": "object",
"required": [
"block_hash",
"id",
"outcome",
"proof"
],
"properties": {
"block_hash": {
"$ref": "#/components/schemas/CryptoHash"
},
"id": {
"$ref": "#/components/schemas/CryptoHash"
},
"outcome": {
"$ref": "#/components/schemas/ExecutionOutcomeView"
},
"proof": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MerklePathItem"
}
}
}
}
Fields§
§block_hash: CryptoHash
§id: CryptoHash
§outcome: ExecutionOutcomeView
§proof: Vec<MerklePathItem>
Trait Implementations§
Source§impl Clone for ExecutionOutcomeWithIdView
impl Clone for ExecutionOutcomeWithIdView
Source§fn clone(&self) -> ExecutionOutcomeWithIdView
fn clone(&self) -> ExecutionOutcomeWithIdView
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 ExecutionOutcomeWithIdView
impl Debug for ExecutionOutcomeWithIdView
Source§impl<'de> Deserialize<'de> for ExecutionOutcomeWithIdView
impl<'de> Deserialize<'de> for ExecutionOutcomeWithIdView
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
Source§impl From<&ExecutionOutcomeWithIdView> for ExecutionOutcomeWithIdView
impl From<&ExecutionOutcomeWithIdView> for ExecutionOutcomeWithIdView
Source§fn from(value: &ExecutionOutcomeWithIdView) -> Self
fn from(value: &ExecutionOutcomeWithIdView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExecutionOutcomeWithIdView
impl RefUnwindSafe for ExecutionOutcomeWithIdView
impl Send for ExecutionOutcomeWithIdView
impl Sync for ExecutionOutcomeWithIdView
impl Unpin for ExecutionOutcomeWithIdView
impl UnwindSafe for ExecutionOutcomeWithIdView
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