[][src]Constant data_encoding::BASE32_NOPAD

pub const BASE32_NOPAD: Encoding;

Unpadded base32 encoding

This encoding is a static version of:

let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
assert_eq!(BASE32_NOPAD, spec.encoding().unwrap());