Enum base64::CharacterSet
source · [−]pub enum CharacterSet {
Standard,
UrlSafe,
Crypt,
Bcrypt,
ImapMutf7,
BinHex,
}
Expand description
Available encoding character sets
Variants
Standard
The standard character set (uses +
and /
).
See RFC 3548.
UrlSafe
The URL safe character set (uses -
and _
).
See RFC 3548.
Crypt
The crypt(3)
character set (uses ./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
).
Not standardized, but folk wisdom on the net asserts that this alphabet is what crypt uses.
Bcrypt
The bcrypt character set (uses ./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
).
ImapMutf7
The character set used in IMAP-modified UTF-7 (uses +
and ,
).
See RFC 3501
BinHex
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