pub struct VLQDecoder {
in_progress: u64,
shift: u32,
}展开描述
用于 zig-zag 编码的可变长度 (VLW) 整数的解码器
另请参阅: https://avro.apache.org/docs/1.11.1/specification/#primitive-types-1 https://protobuf.com.cn/programming-guides/encoding/#varints
字段§
§in_progress: u64用于解码 VLQ 整数的暂存空间
shift: u32实现§
Trait 实现§
来源§impl Default for VLQDecoder
impl Default for VLQDecoder
来源§fn default() -> VLQDecoder
fn default() -> VLQDecoder
返回某个类型的“默认值”。阅读更多