(&self)
| 277 | /// A NUL terminated string in struct module style syntax describing the contents of a single item. |
| 278 | #[inline] |
| 279 | pub fn format(&self) -> &CStr { |
| 280 | if self.0.format.is_null() { |
| 281 | cstr!("B") |
| 282 | } else { |
| 283 | unsafe { CStr::from_ptr(self.0.format) } |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | /// Gets whether the buffer is contiguous in C-style order (last index varies fastest when visiting items in order of memory address). |
| 288 | #[inline] |
no outgoing calls
no test coverage detected