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

Class PyMappingMethods

python27-sys/src/object.rs:287–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

285#[repr(C)]
286#[derive(Copy)]
287pub struct PyMappingMethods {
288 pub mp_length: Option<lenfunc>,
289 pub mp_subscript: Option<binaryfunc>,
290 pub mp_ass_subscript: Option<objobjargproc>,
291}
292
293impl Clone for PyMappingMethods {
294 #[inline]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected