pub fn wrap_errors<Error>(
iter: impl Iterator<Item = Error>,
) -> Result<(), NonEmpty<Error>>
Expand description
Wrap iterator of validation errors into a Result
.
It is common to implement Validate
by constructing an iterator over
validation errors and then calling this convenience function.