(bytes: Vec<u8>)
| 32 | |
| 33 | impl StreamData { |
| 34 | pub fn new(bytes: Vec<u8>) -> Self { |
| 35 | Self { bytes, cursor: 0, sizes: 0 } |
| 36 | } |
| 37 | |
| 38 | pub fn clear(&mut self) { |
| 39 | self.bytes.clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected