Type Definition bcder::PrintableString[][src]

pub type PrintableString = RestrictedString<PrintableCharSet>;
Expand description

A restricted character string allowing a subset of ASCII characters.

This character string allows the following characters from the ASCII character set and encodes them with their ASCII value:

  • the letters A to Z and a to z,
  • the digits 0 to 9,
  • the space character ,
  • the symbols ', (, ), +, ,, -, ., /, :, =, and ?.

See RestrictedString for more details on restricged character strings in general.