| 38 | #[repr(C)] |
| 39 | #[derive(Copy, Clone)] |
| 40 | pub struct PyMemoryViewObject { |
| 41 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 42 | pub _ob_next: *mut PyObject, |
| 43 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 44 | pub _ob_prev: *mut PyObject, |
| 45 | pub ob_refcnt: Py_ssize_t, |
| 46 | pub ob_type: *mut PyTypeObject, |
| 47 | pub base: *mut PyObject, |
| 48 | pub view: Py_buffer, |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected