pub trait ValidateMaxLength {
    fn validate_max_length(
        &self,
        max_length: usize
    ) -> Result<(), MaxLengthErrorParams>; }
Expand description

Required Methods

Implementors