pub type TransactionClosureResult<T, E> = Result<T, TransactionError<E>>;Expand description
Return type of a fallible transaction body.
Aliased Type§
pub enum TransactionClosureResult<T, E> {
Ok(T),
Err(TransactionError<E>),
}pub type TransactionClosureResult<T, E> = Result<T, TransactionError<E>>;Return type of a fallible transaction body.
pub enum TransactionClosureResult<T, E> {
Ok(T),
Err(TransactionError<E>),
}