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