Enum short_crypt::base64::CharacterSet [−]
pub enum CharacterSet {
Standard,
UrlSafe,
Crypt,
}Available encoding character sets
Variants
StandardThe standard character set (uses + and /)
UrlSafeThe URL safe character set (uses - and _)
CryptThe crypt(3) character set (uses ./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz)
Trait Implementations
impl Clone for CharacterSet
impl Clone for CharacterSetfn clone(&self) -> CharacterSet
fn clone(&self) -> CharacterSetReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for CharacterSet
impl Debug for CharacterSetfn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for CharacterSet
impl Copy for CharacterSetAuto Trait Implementations
impl Send for CharacterSet
impl Send for CharacterSetimpl Sync for CharacterSet
impl Sync for CharacterSet