pub type Result = Result<Outcome, Error>;
Represents a validation result.
pub enum Result { Ok(Outcome), Err(Error), }
Contains the success value
Contains the error value