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

Class PyHash_FuncDef

python3-sys/src/pyhash.rs:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#[repr(C)]
6#[derive(Copy)]
7pub 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}
13impl Clone for PyHash_FuncDef {
14 #[inline]
15 fn clone(&self) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected