pub type ValR = Result<Val, Error>;
A value result.
pub enum ValR { Ok(Val), Err(Error), }
Contains the success value
Contains the error value