(&mut self)
| 220 | } |
| 221 | |
| 222 | pub fn seek_to_start(&mut self) { |
| 223 | self.streams.values_mut().for_each(|x| x.cursor = 0); |
| 224 | } |
| 225 | |
| 226 | pub fn trim(&mut self) { |
| 227 | self.streams.values_mut().for_each(|x| x.bytes.truncate(x.cursor as usize)); |
no outgoing calls
no test coverage detected