pub type AppResult<T> = Result<T, AppError>;
Résultat standard d’un handler ou service HTTP.
pub enum AppResult<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value