pub const HUFFMAN_TABLE: [(u32, u8); 257];Expand description
Huffman 编码表:HUFFMAN_TABLE[symbol] = (code, length)
code 为右对齐(最低有效位对齐),length 为位数。 symbol 0-255 对应字节值,symbol 256 为 EOS(End of String)。
这是全 workspace 唯一的 RFC 7541 Appendix B 转录源(zenith-http2 / zenith-http3 共用),任何对码表的核对只需针对本常量。