pub fn parse_and_map<F, R>(raw_packets: &[Vec<u8>], f: F) -> Vec<R>Expand description
Parse and immediately apply a transform in parallel.
This is more efficient than parse_batch + par_map because it avoids
materializing the intermediate Vec<Packet>.