Module hot

Module hot 

Source
Expand description

Hot Lane binary frame parsing (panic-free).

Parsing rules:

  • Never index (buf[0]); always use Buf and remaining() 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.