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

Class PyMemberDef

python27-sys/src/structmember.rs:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#[repr(C)]
7#[derive(Copy, Clone)]
8pub struct PyMemberDef {
9 pub name: *mut c_char,
10 pub type_code: c_int,
11 pub offset: Py_ssize_t,
12 pub flags: c_int,
13 pub doc: *mut c_char,
14}
15
16/* Types */
17pub const T_SHORT: c_int = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected