pub type Result<T> = Result<T, TxError>;
Result type alias for transaction operations.
pub enum Result<T> { Ok(T), Err(TxError), }
Contains the success value
Contains the error value