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§const fn clone_from(&mut self, source: &Self)
const 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<ExecutionOutcomeWithIdView, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionOutcomeWithIdView, <__D as Deserializer<'de>>::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) -> ExecutionOutcomeWithIdView
fn from(value: &ExecutionOutcomeWithIdView) -> ExecutionOutcomeWithIdView
Converts to this type from the input type.
Source§impl Serialize for ExecutionOutcomeWithIdView
impl Serialize for ExecutionOutcomeWithIdView
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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