pub type StmResult<T> = Result<T, StmError>;
Mithril-stm result type
pub enum StmResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value