#[repr(C)]
pub struct PyUFuncObject {
Show 27 fields 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: PyObject§nin: c_int§nout: c_int§nargs: c_int§identity: c_int§functions: *mut PyUFuncGenericFunction§data: *mut *mut c_void§ntypes: c_int§reserved1: c_int§name: *const c_char§types: *mut c_char§doc: *const c_char§ptr: *mut c_void§obj: *mut PyObject§userloops: *mut PyObject§core_enabled: c_int§core_num_dim_ix: c_int§core_num_dims: *mut c_int§core_dim_ixs: *mut c_int§core_offsets: *mut c_int§core_signature: *mut c_char§type_resolver: PyUFunc_TypeResolutionFunc§legacy_inner_loop_selector: PyUFunc_LegacyInnerLoopSelectionFunc§reserved2: *mut c_void§masked_inner_loop_selector: PyUFunc_MaskedInnerLoopSelectionFunc§op_flags: *mut npy_uint32§iter_flags: npy_uint32

Trait Implementations§

source§

impl Clone for PyUFuncObject

source§

fn clone(&self) -> PyUFuncObject

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for PyUFuncObject

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.