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