Expand description
Hot Lane binary frame parsing (panic-free).
Parsing rules:
- Never index (
buf[0]); always useBufandremaining()checks. - Never
unwrap()/expect()/panic!()in production paths. - Validate header lengths before reading optional fields.
Structs§
- HotFrame
- Parsed Hot Lane frame.
Constants§
- HOT_
FLAG_ SEQ_ PRESENT - Hot Lane flag: seq (u32) is present.
Functions§
- decode_
hot_ frame - Decode a Hot Lane frame from bytes.