# Safety assume the buffer is contiguous
(&self)
| 75 | /// # Safety |
| 76 | /// assume the buffer is contiguous |
| 77 | pub unsafe fn contiguous_unchecked(&self) -> BorrowedValue<'_, [u8]> { |
| 78 | self.obj_bytes() |
| 79 | } |
| 80 | |
| 81 | /// # Safety |
| 82 | /// assume the buffer is contiguous and writable |
no test coverage detected