pub fn decode(
input: &str,
output: &mut Vec<u8>,
bits: u64,
) -> Result<(), ZBase32Error>Expand description
Decode a slice of characters to a Vec of octets (bytes).
The output octets will be appended to output.
The length of input must match the value returned by
required_quintets_buffer_len. The output buffer will be
extended by to accommodate the output.
This method is not available in no_std mode.