pub fn encode_string(s: &str, huffman_compress: bool) -> Vec<u8> ⓘ
Encode a string. huffman_compress=true enables Huffman.
huffman_compress=true
Format: 1-byte header (H flag in bit 7 + 7-bit length prefix) + length continuation + octets.
H