Struct python27_sys::PyComplexObject [] [src]

pub struct PyComplexObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
    pub cval: Py_complex,
}

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject cval: Py_complex

Trait Implementations

impl Clone for PyComplexObject
[src]

fn clone(&self) -> PyComplexObject

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