Struct python27_sys::PyMemoryViewObject [] [src]

pub struct PyMemoryViewObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
    pub base: *mut PyObject,
    pub view: Py_buffer,
}

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject base: *mut PyObject view: Py_buffer

Trait Implementations

impl Clone for PyMemoryViewObject
[src]

fn clone(&self) -> PyMemoryViewObject

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