Constant BASE64_NOPAD

pub const BASE64_NOPAD: Encoding;

Unpadded base64 encoding

This encoding is a static version of:

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