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§
source§impl Clone for CharacterSet
impl Clone for CharacterSet
source§fn clone(&self) -> CharacterSet
fn clone(&self) -> CharacterSet
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more