#[derive(Validate)]
struct Thing {
#[validatron(min_len = 5)]
pub name: String
}
fails with:
&std::string::String is not an iterator
the trait Iterator is not implemented for &std::string::String
required because of the requirements on the impl of IntoIterator for &std::string::String
fails with: