Type Alias bcder::string::PrintableString
source · 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
toZ
anda
toz
, - the digits
0
to9
, - the space character
- the symbols
'
,(
,)
,+
,,
,-
,.
,/
,:
,=
, and?
.
See RestrictedString
for more details on restricged character strings
in general.
Aliased Type§
struct PrintableString { /* private fields */ }