Constant data_encoding::BASE64_NOPAD [] [src]

pub const BASE64_NOPAD: Encoding = BASE64_NOPAD_IMPL

Unpadded base64 encoding

This encoding is a static version of:

let mut spec = Specification::new();
spec.symbols.push_str(
    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
assert_eq!(BASE64_NOPAD, spec.encoding().unwrap());