| 5 | #[repr(C)] |
| 6 | #[derive(Copy)] |
| 7 | pub struct PyHash_FuncDef { |
| 8 | pub hash: Option<extern "C" fn(arg1: *const c_void, arg2: Py_ssize_t) -> Py_hash_t>, |
| 9 | pub name: *const c_char, |
| 10 | pub hash_bits: c_int, |
| 11 | pub seed_bits: c_int, |
| 12 | } |
| 13 | impl Clone for PyHash_FuncDef { |
| 14 | #[inline] |
| 15 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected