MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyMemoryViewObject

Class PyMemoryViewObject

python27-sys/src/memoryobject.rs:40–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38#[repr(C)]
39#[derive(Copy, Clone)]
40pub 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected