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<()>;
}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<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".