pub type Stm<T> = Result<T, StmControl>;
Expand description
Type returned by STM methods that cannot be aborted, the only reason they can fail is to be retried.
Aliased Type§
pub enum Stm<T> {
Ok(T),
Err(StmControl),
}
pub type Stm<T> = Result<T, StmControl>;
Type returned by STM methods that cannot be aborted, the only reason they can fail is to be retried.
pub enum Stm<T> {
Ok(T),
Err(StmControl),
}