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

Class PyInstanceObject

python27-sys/src/classobject.rs:26–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24#[repr(C)]
25#[derive(Copy, Clone)]
26pub struct PyInstanceObject {
27 #[cfg(py_sys_config = "Py_TRACE_REFS")]
28 pub _ob_next: *mut PyObject,
29 #[cfg(py_sys_config = "Py_TRACE_REFS")]
30 pub _ob_prev: *mut PyObject,
31 pub ob_refcnt: Py_ssize_t,
32 pub ob_type: *mut PyTypeObject,
33 pub in_class: *mut PyClassObject,
34 pub in_dict: *mut PyObject,
35 pub in_weakreflist: *mut PyObject,
36}
37
38#[repr(C)]
39#[derive(Copy, Clone)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected