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