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
sourceimpl Clone for CharacterSet
impl Clone for CharacterSet
sourcefn clone(&self) -> CharacterSet
fn clone(&self) -> CharacterSet
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CharacterSet
impl Debug for CharacterSet
impl Copy for CharacterSet
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more