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