pub type TmResult<T = ()> = Result<T, String>;
pub enum TmResult<T = ()> { Ok(T), Err(String), }
Contains the success value
Contains the error value