| 6 | #[repr(C)] |
| 7 | #[derive(Copy, Clone)] |
| 8 | pub 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 */ |
| 17 | pub const T_SHORT: c_int = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected