pub fn decode_fixed_length(
    englishid: &str,
    length: usize
) -> Result<Vec<u8>, Error>
Expand description

Decodes englishid that was previously encoded using encode_fixed_length()., expecting an output size of length.

Errors

  • Error::EmptyInput: englishid was empty.
  • Error::UnknownWord: An unrecognized word was encountered.