pub trait ValidatedVecWrapper<T: ValidatedWrapper>: ValidatedWrapper {
    fn from_vec(v: Vec<T>) -> Result<Self, ValidatedCustomizedVecError>;
}

Required Methods§

Implementors§