Returns the raw pointer to the C string.
(&self)
| 774 | |
| 775 | /// Returns the raw pointer to the C string. |
| 776 | pub fn as_ptr(&self) -> *const u8 { |
| 777 | self.buf.as_ptr() |
| 778 | } |
| 779 | |
| 780 | /// Returns a reference as a CStr. |
| 781 | /// # Safety |
no outgoing calls
no test coverage detected