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