Struct pyo3::ffi::PyHeapTypeObject [] [src]

#[repr(C)]
pub struct PyHeapTypeObject { pub ht_type: PyTypeObject, pub as_async: PyAsyncMethods, pub as_number: PyNumberMethods, pub as_mapping: PyMappingMethods, pub as_sequence: PySequenceMethods, pub as_buffer: PyBufferProcs, pub ht_name: *mut PyObject, pub ht_slots: *mut PyObject, pub ht_qualname: *mut PyObject, pub ht_cached_keys: *mut c_void, }

Fields

Trait Implementations

impl Copy for PyHeapTypeObject
[src]

impl Clone for PyHeapTypeObject
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for PyHeapTypeObject
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations