Enum base64::CharacterSet [−][src]
pub enum CharacterSet { Standard, UrlSafe, Crypt, Bcrypt, ImapMutf7, BinHex, }
Available encoding character sets
Variants
The standard character set (uses +
and /
).
See RFC 3548.
The URL safe character set (uses -
and _
).
See RFC 3548.
The crypt(3)
character set (uses ./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
).
Not standardized, but folk wisdom on the net asserts that this alphabet is what crypt uses.
The bcrypt character set (uses ./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
).
The character set used in IMAP-modified UTF-7 (uses +
and ,
).
See RFC 3501
The character set used in BinHex 4.0 files.
Trait Implementations
impl Clone for CharacterSet
[src]
impl Clone for CharacterSet
[src]