pub trait GetExecutionId<Hash>where
    Hash: Encode + Decode + Debug + Clone,{
    // Required method
    fn get_execution_id(&self) -> &Hash;
}
Expand description

A handler trait that allows generics to provide some execution_id

Required Methods§

Implementors§

source§

impl<Hash, AccountId, BlockNumber, BalanceOf> GetExecutionId<Hash> for ExecutionState<Hash, AccountId, BlockNumber, BalanceOf>where Hash: Encode + Decode + Debug + Clone, AccountId: Encode + Decode + Debug + Clone, BlockNumber: Encode + Decode + Debug + Clone, BalanceOf: Encode + Decode + Debug + Clone,