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