(&self)
| 523 | /// This pointer is guaranteed to be aligned along cache-lines. |
| 524 | #[inline] |
| 525 | pub const fn as_ptr(&self) -> *const u8 { |
| 526 | self.data.as_ptr() |
| 527 | } |
| 528 | |
| 529 | /// Returns a mutable raw pointer to this buffer's internal memory |
| 530 | /// This pointer is guaranteed to be aligned along cache-lines. |
no outgoing calls