You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most strings, especially in input/API types (request types) cannot be empty strings. The trivial approach would be to add that validation to deserialization stage. Think of Url: if it's not a valid url it would fail to deserialize. Another case would be non empty list, which we also should add or use nonempty crate
The text was updated successfully, but these errors were encountered:
Most strings, especially in input/API types (request types) cannot be empty strings. The trivial approach would be to add that validation to deserialization stage. Think of
Url
: if it's not a valid url it would fail to deserialize. Another case would be non empty list, which we also should add or usenonempty
crateThe text was updated successfully, but these errors were encountered: