pub trait ValidatedHashSetWrapper<T: ValidatedWrapper + Eq + Hash>: ValidatedWrapper {
    fn from_hash_set(
        s: HashSet<T>
    ) -> Result<Self, ValidatedCustomizedHashSetError>; }

Required Methods§

Implementors§