pub type ValidatorResult = Result<(), ValicoErrors>;
pub enum ValidatorResult { Ok(()), Err(Vec<Box<dyn ValicoError>>), }
Contains the success value
Contains the error value