pub const fn validate_length(
value: &str,
min: usize,
max: usize,
) -> ValidationResult<&str>Available on crate feature
validation only.Expand description
Validate string length is within bounds.
ยงErrors
Returns ValidationError::TooShort or ValidationError::TooLong if out of range.