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