#[repr(C)]pub struct PyArray_ArrFuncs {Show 23 fields
pub cast: [PyArray_VectorUnaryFunc; 21],
pub getitem: PyArray_GetItemFunc,
pub setitem: PyArray_SetItemFunc,
pub copyswapn: PyArray_CopySwapNFunc,
pub copyswap: PyArray_CopySwapFunc,
pub compare: PyArray_CompareFunc,
pub argmax: PyArray_ArgFunc,
pub dotfunc: PyArray_DotFunc,
pub scanfunc: PyArray_ScanFunc,
pub fromstr: PyArray_FromStrFunc,
pub nonzero: PyArray_NonzeroFunc,
pub fill: PyArray_FillFunc,
pub fillwithscalar: PyArray_FillWithScalarFunc,
pub sort: [PyArray_SortFunc; 3],
pub argsort: [PyArray_ArgSortFunc; 3],
pub castdict: *mut PyObject,
pub scalarkind: PyArray_ScalarKindFunc,
pub cancastscalarkindto: *mut *mut c_int,
pub cancastto: *mut c_int,
pub fastclip: PyArray_FastClipFunc,
pub fastputmask: PyArray_FastPutmaskFunc,
pub fasttake: PyArray_FastTakeFunc,
pub argmin: PyArray_ArgFunc,
}
Fields§
§cast: [PyArray_VectorUnaryFunc; 21]
§getitem: PyArray_GetItemFunc
§setitem: PyArray_SetItemFunc
§copyswapn: PyArray_CopySwapNFunc
§copyswap: PyArray_CopySwapFunc
§compare: PyArray_CompareFunc
§argmax: PyArray_ArgFunc
§dotfunc: PyArray_DotFunc
§scanfunc: PyArray_ScanFunc
§fromstr: PyArray_FromStrFunc
§nonzero: PyArray_NonzeroFunc
§fill: PyArray_FillFunc
§fillwithscalar: PyArray_FillWithScalarFunc
§sort: [PyArray_SortFunc; 3]
§argsort: [PyArray_ArgSortFunc; 3]
§castdict: *mut PyObject
§scalarkind: PyArray_ScalarKindFunc
§cancastscalarkindto: *mut *mut c_int
§cancastto: *mut c_int
§fastclip: PyArray_FastClipFunc
§fastputmask: PyArray_FastPutmaskFunc
§fasttake: PyArray_FastTakeFunc
§argmin: PyArray_ArgFunc
Trait Implementations§
Source§impl Clone for PyArray_ArrFuncs
impl Clone for PyArray_ArrFuncs
Source§fn clone(&self) -> PyArray_ArrFuncs
fn clone(&self) -> PyArray_ArrFuncs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PyArray_ArrFuncs
Auto Trait Implementations§
impl Freeze for PyArray_ArrFuncs
impl RefUnwindSafe for PyArray_ArrFuncs
impl !Send for PyArray_ArrFuncs
impl !Sync for PyArray_ArrFuncs
impl Unpin for PyArray_ArrFuncs
impl UnwindSafe for PyArray_ArrFuncs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more