| 49 | |
| 50 | #[derive(Clone)] |
| 51 | struct MultiStreamTracer { |
| 52 | /// The (key, value, size) of all the reads made to the IO region. |
| 53 | reads: Vec<(StreamKey, u64, u8)>, |
| 54 | } |
| 55 | |
| 56 | impl IoTracer for MultiStreamTracer { |
| 57 | fn read(&mut self, addr: StreamKey, value: &[u8]) { |
nothing calls this directly
no outgoing calls
no test coverage detected