Enum base64::CharacterSet [−][src]
pub enum CharacterSet { Standard, UrlSafe, Crypt, Bcrypt, ImapMutf7, BinHex, }
Expand description
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
Auto Trait Implementations
impl RefUnwindSafe for CharacterSet
impl Send for CharacterSet
impl Sync for CharacterSet
impl Unpin for CharacterSet
impl UnwindSafe for CharacterSet
Blanket Implementations
Mutably borrows from an owned value. Read more