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