Struct fuel_core_interfaces::executor::ExecutionResult
source · pub struct ExecutionResult {
pub block: FuelBlock,
pub skipped_transactions: Vec<(Transaction, Error)>,
}Expand description
The result of transactions execution.
Fields
block: FuelBlockCreated block during the execution of transactions. It contains only valid transactions.
skipped_transactions: Vec<(Transaction, Error)>The list of skipped transactions with corresponding errors. Those transactions were not included in the block and didn’t affect the state of the blockchain.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl !UnwindSafe for ExecutionResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more