pub fn unique_validator<T: Eq + Hash>(x: &Vec<T>) -> Result<(), ValidationError>Available on crate feature
api only.Expand description
validator helper checking that a list contains no duplicate items.
ยงErrors
Will return Err when x has duplicate items.