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