-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
Context
We are using nutype to replicate our frontend validators in the backend.
One tricky aspect is string length validation.
In the javascript frontend we use .length to validate the strings which is the length of the UTF-16 string in javascript engine.
Currently we are using custom validators for that purpose, like so
#[nutype(
validate(not_empty, predicate = |t| t.encode_utf16().count() <= 255),
)]
pub struct ValidTitle(String);Suggestions
We'd be interested in either alternative string validators len_utf16_max & len_utf16_min or an extra parameter to the string length validator with the encoding.
Thanks for that great lib 😊
Metadata
Metadata
Assignees
Labels
No labels