(&mut self, additional: NonZeroUsize)
| 32 | } |
| 33 | |
| 34 | fn reserve(&mut self, additional: NonZeroUsize) { |
| 35 | self.lengths.reserve(additional); |
| 36 | // We don't know the lengths of the vectors, so we can't reserve more. |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /// Copies `N` or `n` bytes from `src` to `dst` depending on if `src` lies within a memory page. |
no outgoing calls
no test coverage detected