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

Class PyMappingMethods

python3-sys/src/object.rs:304–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302 #[repr(C)]
303 #[derive(Copy)]
304 pub struct PyMappingMethods {
305 pub mp_length: Option<crate::object::lenfunc>,
306 pub mp_subscript: Option<crate::object::binaryfunc>,
307 pub mp_ass_subscript: Option<crate::object::objobjargproc>,
308 }
309 impl Clone for PyMappingMethods {
310 #[inline]
311 fn clone(&self) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected