Type Definition sled::transaction::TransactionResult[][src]

pub type TransactionResult<T, E = ()> = Result<T, TransactionError<E>>;
Expand description

A transaction-related Result which is used for returning the final result of a transaction after potentially running the provided closure several times due to underlying conflicts.