BASE32_NOPAD

Static BASE32_NOPAD 

Source
pub static BASE32_NOPAD: Base32NoPad
Expand description

Unpadded base32 encoding

This encoding is a static version of:

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