Copies all of the bytes from `self` returning one contiguous blob.
(mut self)
| 110 | |
| 111 | /// Copies all of the bytes from `self` returning one contiguous blob. |
| 112 | pub fn into_contiguous(mut self) -> Vec<u8> { |
| 113 | self.copy_to_bytes(self.remaining()).into() |
| 114 | } |
| 115 | |
| 116 | /// Extends the buffer by one more segment of [`Bytes`]. |
| 117 | /// |
nothing calls this directly
no test coverage detected