pub type TxResult<T, E = TxError> = Result<T, E>;
Execution result.
pub enum TxResult<T, E = TxError> { Ok(T), Err(E), }
Contains the success value
Contains the error value