[][src]Trait numpy::convert::ToNpyDims

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 { ... } }

Utility trait to specify the dimention of array

Required methods

fn __private__(&self) -> PrivateMarker

Loading content...

Provided methods

fn ndim_cint(&self) -> c_int

fn as_dims_ptr(&self) -> *mut npy_intp

fn to_npy_dims(&self) -> PyArray_Dims

Loading content...

Implementors

impl<D: Dimension> ToNpyDims for D[src]

Loading content...