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