pub trait TransactionProcessingResultExtensions {
// Required methods
fn was_processed(&self) -> bool;
fn was_processed_with_successful_result(&self) -> bool;
fn processed_transaction(&self) -> Option<&ProcessedTransaction>;
fn flattened_result(&self) -> TransactionResult<()>;
}