Type Definition bcder::NumericString
source · [−]pub type NumericString = RestrictedString<NumericCharSet>;Expand description
A restricted character string containing only digits and spaces.
This character string allows only decimal digits 0 to 9 and the
space character . It encodes them with their ASCII value.
See RestrictedString for more details on restricged character strings
in general.