Struct flow_sdk::access::GetExecutionResultForBlockIdRequest [−][src]
pub struct GetExecutionResultForBlockIdRequest<Id> {
pub block_id: Id,
}
Expand description
Retrieves execution result for given block. It is different from Transaction Results, and contain data about chunks/collection level execution results rather than particular transactions. Particularly, it contains EventsCollection hash for every chunk which can be used to verify the events for a block.
Fields
block_id: Id
ID of the block.
Trait Implementations
type Wire = LengthDelimitedWire
returns the size in bytes when encoded, including the field number.
fn encode_field<V>(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: V
) where
V: VarInt,
fn encode_field<V>(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: V
) where
V: VarInt,
The entry point to encoding Encodable
s in a message. Read more
unsafe fn encode_field_precomputed(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: &[u8]
)
unsafe fn encode_field_precomputed(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: &[u8]
)
Encodes a field using precomputed bytes for the field number and the wire type varint. Read more
Auto Trait Implementations
impl<Id> RefUnwindSafe for GetExecutionResultForBlockIdRequest<Id> where
Id: RefUnwindSafe,
impl<Id> Send for GetExecutionResultForBlockIdRequest<Id> where
Id: Send,
impl<Id> Sync for GetExecutionResultForBlockIdRequest<Id> where
Id: Sync,
impl<Id> Unpin for GetExecutionResultForBlockIdRequest<Id> where
Id: Unpin,
impl<Id> UnwindSafe for GetExecutionResultForBlockIdRequest<Id> where
Id: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T
in a tonic::Request
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more