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