Struct linera_chain::data_types::ExecutedBlock
source · pub struct ExecutedBlock {
pub block: Block,
pub messages: Vec<OutgoingMessage>,
pub message_counts: Vec<u32>,
pub state_hash: CryptoHash,
}Expand description
A block, together with the messages and the state hash resulting from its execution.
Fields§
§block: Block§messages: Vec<OutgoingMessage>§message_counts: Vec<u32>For each transaction, the cumulative number of messages created by this and all previous
transactions, i.e. message_counts[i] is the index of the first message created by
transaction i + 1 or later.
state_hash: CryptoHashImplementations§
source§impl ExecutedBlock
impl ExecutedBlock
pub async fn block(&self, ctx: &Context<'_>) -> Result<&Block>
pub async fn messages(&self, ctx: &Context<'_>) -> Result<&Vec<OutgoingMessage>>
pub async fn message_counts(&self, ctx: &Context<'_>) -> Result<&Vec<u32>>
pub async fn state_hash(&self, ctx: &Context<'_>) -> Result<&CryptoHash>
source§impl ExecutedBlock
impl ExecutedBlock
sourcepub fn message_id_for_operation(
&self,
operation_index: usize,
message_index: u32
) -> Option<MessageId>
pub fn message_id_for_operation( &self, operation_index: usize, message_index: u32 ) -> Option<MessageId>
Returns the message_indexth outgoing message created by the operation_indexth operation,
or None if there is no such operation or message.
pub fn message_by_id(&self, message_id: &MessageId) -> Option<&OutgoingMessage>
Trait Implementations§
source§impl Clone for ExecutedBlock
impl Clone for ExecutedBlock
source§fn clone(&self) -> ExecutedBlock
fn clone(&self) -> ExecutedBlock
Returns a copy 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 ContainerType for ExecutedBlock
impl ContainerType for ExecutedBlock
source§fn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Resolves a field value and outputs it as a json value
async_graphql::Value. Read moresource§fn collect_all_fields<'a>(
&'a self,
ctx: &ContextBase<'a, &'a Positioned<SelectionSet>>,
fields: &mut Fields<'a>
) -> Result<(), ServerError>
fn collect_all_fields<'a>( &'a self, ctx: &ContextBase<'a, &'a Positioned<SelectionSet>>, fields: &mut Fields<'a> ) -> Result<(), ServerError>
Collect all the fields of the container that are queried in the
selection set. Read more
source§fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_: &'life1 ContextBase<'life2, &'life2 Positioned<Field>>,
_params: &'life3 ConstValue
) -> Pin<Box<dyn Future<Output = Result<Option<ConstValue>, ServerError>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Self: Sync + 'async_trait,
fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_: &'life1 ContextBase<'life2, &'life2 Positioned<Field>>,
_params: &'life3 ConstValue
) -> Pin<Box<dyn Future<Output = Result<Option<ConstValue>, ServerError>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Self: Sync + 'async_trait,
Find the GraphQL entity with the given name from the parameter. Read more
source§impl Debug for ExecutedBlock
impl Debug for ExecutedBlock
source§impl<'de> Deserialize<'de> for ExecutedBlock
impl<'de> Deserialize<'de> for ExecutedBlock
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 Hash for ExecutedBlock
impl Hash for ExecutedBlock
source§impl OutputType for ExecutedBlock
impl OutputType for ExecutedBlock
source§fn create_type_info(registry: &mut Registry) -> String
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
source§fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
ctx: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
ctx: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Resolve an output value to
async_graphql::Value.source§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.
source§impl PartialEq for ExecutedBlock
impl PartialEq for ExecutedBlock
source§fn eq(&self, other: &ExecutedBlock) -> bool
fn eq(&self, other: &ExecutedBlock) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ExecutedBlock
impl Serialize for ExecutedBlock
impl Eq for ExecutedBlock
impl ObjectType for ExecutedBlock
impl StructuralPartialEq for ExecutedBlock
Auto Trait Implementations§
impl RefUnwindSafe for ExecutedBlock
impl Send for ExecutedBlock
impl Sync for ExecutedBlock
impl Unpin for ExecutedBlock
impl UnwindSafe for ExecutedBlock
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more