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