Trait ValidateCompositedMinLength

Source
pub trait ValidateCompositedMinLength {
    // Required method
    fn validate_composited_min_length(
        &self,
        min_length: usize,
    ) -> Result<(), Composited<MinLengthError>>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<K, V> ValidateCompositedMinLength for HashMap<K, V>

Source§

impl<T> ValidateCompositedMinLength for Option<T>

Source§

impl<T> ValidateCompositedMinLength for Vec<T>

Source§

impl<T, const N: usize> ValidateCompositedMinLength for [T; N]

Implementors§