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