pub fn ValidateStringLength(
Value: &str,
MinLen: usize,
MaxLen: usize,
) -> Result<()>Expand description
Validate string length
Defensive utility to validate string length bounds.
ยงArguments
value- The string to validatemin_len- Minimum allowed length (inclusive)MaxLength- Maximum allowed length (inclusive)