Type Alias ErrorIterator

Source
pub type ErrorIterator<'a> = Box<dyn Iterator<Item = ValidationError> + 'a>;
Expand description

An Iterator over ValidationError objects. The main method by which validation errors are returned to the user.

Aliased Typeยง

pub struct ErrorIterator<'a>(/* private fields */);