| 5 | #[repr(C)] |
| 6 | #[derive(Copy)] |
| 7 | pub struct PyImport_Struct_inittab { |
| 8 | pub name: *mut c_char, |
| 9 | pub initfunc: Option<unsafe extern "C" fn()>, |
| 10 | } |
| 11 | |
| 12 | impl Clone for PyImport_Struct_inittab { |
| 13 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected