Struct python27_sys::PyMethodObject [] [src]

pub struct PyMethodObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
    pub im_func: *mut PyObject,
    pub im_self: *mut PyObject,
    pub im_class: *mut PyObject,
    pub im_weakreflist: *mut PyObject,
}

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject im_func: *mut PyObject im_self: *mut PyObject im_class: *mut PyObject im_weakreflist: *mut PyObject

Trait Implementations

impl Clone for PyMethodObject
[src]

fn clone(&self) -> PyMethodObject

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

impl Copy for PyMethodObject
[src]