Struct python27_sys::PySliceObject [] [src]

pub struct PySliceObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
    pub start: *mut PyObject,
    pub stop: *mut PyObject,
    pub step: *mut PyObject,
}

Fields

ob_refcnt: Py_ssize_t ob_type: *mut PyTypeObject start: *mut PyObject stop: *mut PyObject step: *mut PyObject

Trait Implementations

impl Clone for PySliceObject
[src]

fn clone(&self) -> PySliceObject

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