Function abort

Source
pub fn abort<T, E>(e: E) -> TransactionClosureResult<T, E>
Expand description

Call abort to abort a transaction and pass the error as the return value.

ยงExamples

struct MyError;

let execute_once: Result<u32, _> = atomically_with_err(|_| {
    abort(MyError)
});

assert!(execute_once.is_err());