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

#[repr(C)]pub struct PyUFuncObject {
    pub ob_base: PyObject,
    pub nin: c_int,
    pub nout: c_int,
    pub nargs: c_int,
    pub identity: c_int,
    pub functions: *mut PyUFuncGenericFunction,
    pub data: *mut *mut c_void,
    pub ntypes: c_int,
    pub reserved1: c_int,
    pub name: *const c_char,
    pub types: *mut c_char,
    pub doc: *const c_char,
    pub ptr: *mut c_void,
    pub obj: *mut PyObject,
    pub userloops: *mut PyObject,
    pub core_enabled: c_int,
    pub core_num_dim_ix: c_int,
    pub core_num_dims: *mut c_int,
    pub core_dim_ixs: *mut c_int,
    pub core_offsets: *mut c_int,
    pub core_signature: *mut c_char,
    pub type_resolver: PyUFunc_TypeResolutionFunc,
    pub legacy_inner_loop_selector: PyUFunc_LegacyInnerLoopSelectionFunc,
    pub reserved2: *mut c_void,
    pub masked_inner_loop_selector: PyUFunc_MaskedInnerLoopSelectionFunc,
    pub op_flags: *mut npy_uint32,
    pub iter_flags: npy_uint32,
}

Fields

ob_base: PyObjectnin: c_intnout: c_intnargs: c_intidentity: c_intfunctions: *mut PyUFuncGenericFunctiondata: *mut *mut c_voidntypes: c_intreserved1: c_intname: *const c_chartypes: *mut c_chardoc: *const c_charptr: *mut c_voidobj: *mut PyObjectuserloops: *mut PyObjectcore_enabled: c_intcore_num_dim_ix: c_intcore_num_dims: *mut c_intcore_dim_ixs: *mut c_intcore_offsets: *mut c_intcore_signature: *mut c_chartype_resolver: PyUFunc_TypeResolutionFunclegacy_inner_loop_selector: PyUFunc_LegacyInnerLoopSelectionFuncreserved2: *mut c_voidmasked_inner_loop_selector: PyUFunc_MaskedInnerLoopSelectionFuncop_flags: *mut npy_uint32iter_flags: npy_uint32

Trait Implementations

impl Clone for PyUFuncObject[src]

impl Copy for PyUFuncObject[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.