[][src]Struct numpy::npyffi::objects::PyArrayNeighborhoodIterObject

#[repr(C)]pub struct PyArrayNeighborhoodIterObject {
    pub ob_base: PyObject,
    pub nd_m1: c_int,
    pub index: npy_intp,
    pub size: npy_intp,
    pub coordinates: [npy_intp; 32],
    pub dims_m1: [npy_intp; 32],
    pub strides: [npy_intp; 32],
    pub backstrides: [npy_intp; 32],
    pub factors: [npy_intp; 32],
    pub ao: *mut PyArrayObject,
    pub dataptr: *mut c_char,
    pub contiguous: npy_bool,
    pub bounds: [[npy_intp; 2]; 32],
    pub limits: [[npy_intp; 2]; 32],
    pub limits_sizes: [npy_intp; 32],
    pub translate: npy_iter_get_dataptr_t,
    pub nd: npy_intp,
    pub dimensions: [npy_intp; 32],
    pub _internal_iter: *mut PyArrayIterObject,
    pub constant: *mut c_char,
    pub mode: c_int,
}

Fields

ob_base: PyObjectnd_m1: c_intindex: npy_intpsize: npy_intpcoordinates: [npy_intp; 32]dims_m1: [npy_intp; 32]strides: [npy_intp; 32]backstrides: [npy_intp; 32]factors: [npy_intp; 32]ao: *mut PyArrayObjectdataptr: *mut c_charcontiguous: npy_boolbounds: [[npy_intp; 2]; 32]limits: [[npy_intp; 2]; 32]limits_sizes: [npy_intp; 32]translate: npy_iter_get_dataptr_tnd: npy_intpdimensions: [npy_intp; 32]_internal_iter: *mut PyArrayIterObjectconstant: *mut c_charmode: c_int

Trait Implementations

impl Clone for PyArrayNeighborhoodIterObject[src]

impl Copy for PyArrayNeighborhoodIterObject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromPy<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.