Function atomically_with_err

Source
pub fn atomically_with_err<T, E, F>(f: F) -> Result<T, E>
where F: Fn(&mut Transaction) -> TransactionClosureResult<T, E>,
Expand description

Run a function atomically by using Software Transactional Memory. It calls to Transaction::with_err internally, but is more explicit.