Struct python27_sys::PyMethodObject[][src]

#[repr(C)]
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

Trait Implementations

impl Copy for PyMethodObject
[src]

impl Clone for PyMethodObject
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations