Struct python3_sys::PyObject [] [src]

pub struct PyObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
}

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject

Trait Implementations

impl Clone for PyObject
[src]

fn clone(&self) -> PyObject

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 PyObject
[src]