pub trait ToNpyDims: Dimension {
    fn __private__(&self) -> PrivateMarker;

    fn ndim_cint(&self) -> c_int { ... }
fn as_dims_ptr(&self) -> *mut npy_intp { ... }
fn to_npy_dims(&self) -> PyArray_Dims { ... } }
Expand description

Utility trait to specify the dimention of array

Required methods

Provided methods

Implementors