Struct python27_sys::PyVarObject [] [src]

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

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject ob_size: Py_ssize_t

Trait Implementations

impl Clone for PyVarObject
[src]

fn clone(&self) -> PyVarObject

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