pub type ExecutionFailure = ExecutionResult<TxExecutionError>;Expand description
Execution related info as a result of performing a failed transaction execution on the network. The related error message can be retrieved from this object or can be forwarded.
Aliased Type§
struct ExecutionFailure {
pub total_gas_burnt: NearGas,
/* private fields */
}Fields§
§total_gas_burnt: NearGasTotal gas burnt by the execution
Trait Implementations§
Source§impl Display for ExecutionFailure
impl Display for ExecutionFailure
Source§impl Error for ExecutionFailure
impl Error for ExecutionFailure
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()