pub fn validate_identifier_string(s: &str) -> Result<(), ValidationError>
Expand description
Helper function to validate identifierString
§identfierString
This is a case-insensitive dataType and can only contain characters from the following
character set: a-z
, A-Z
, 0-9
, '*'
, '-'
, '_'
, '='
, ':'
, '+'
, '|'
, '@'
, '.'