Enum base64::CharacterSet[][src]

pub enum CharacterSet {
    Standard,
    UrlSafe,
    Crypt,
}

Available encoding character sets

Variants

The standard character set (uses + and /)

The URL safe character set (uses - and _)

The crypt(3) character set (uses ./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz)

Trait Implementations

impl Clone for CharacterSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CharacterSet
[src]

impl Debug for CharacterSet
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations