Struct python27_sys::PyTupleObject
[−]
[src]
pub struct PyTupleObject { pub ob_refcnt: Py_ssize_t, pub ob_type: *mut PyTypeObject, pub ob_size: Py_ssize_t, pub ob_item: [*mut PyObject; 1], }
Fields
ob_refcnt: Py_ssize_t
ob_type: *mut PyTypeObject
ob_size: Py_ssize_t
ob_item: [*mut PyObject; 1]
Trait Implementations
impl Clone for PyTupleObject
[src]
fn clone(&self) -> PyTupleObject
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