pub type AppResult<T> = Result<T, Error>;
Shared app result type used across the booking triage boundary.
pub enum AppResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value