| 38 | #[repr(C)] |
| 39 | #[derive(Copy)] |
| 40 | pub struct PyMethodDef { |
| 41 | pub ml_name: *const c_char, |
| 42 | pub ml_meth: Option<PyCFunction>, |
| 43 | pub ml_flags: c_int, |
| 44 | pub ml_doc: *const c_char, |
| 45 | } |
| 46 | |
| 47 | impl Clone for PyMethodDef { |
| 48 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected