pub const BASE32_NOPAD_VISUAL: Encoding;
Expand description
Unpadded base32 encoding with visual error correction during decoding
This encoding is a static version of:
let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
spec.translate.from.push_str("01l8");
spec.translate.to.push_str("OIIB");
assert_eq!(BASE32_NOPAD_VISUAL, spec.encoding().unwrap());