pub type Result = Result<(), BoxError>;
The standard result type returned by handlers.
pub enum Result { Ok(()), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value