Struct python27_sys::PyHeapTypeObject [] [src]

pub struct PyHeapTypeObject {
    pub ht_type: PyTypeObject,
    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,
}

Fields

ht_type: PyTypeObject as_number: PyNumberMethods as_mapping: PyMappingMethods as_sequence: PySequenceMethods as_buffer: PyBufferProcs ht_name: *mut PyObject ht_slots: *mut PyObject

Trait Implementations

impl Copy for PyHeapTypeObject
[src]

impl Clone for PyHeapTypeObject
[src]

fn clone(&self) -> PyHeapTypeObject

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more