python27_sys

Struct PyNumberMethods

Source
#[repr(C)]
pub struct PyNumberMethods {
Show 39 fields pub nb_add: Option<binaryfunc>, pub nb_subtract: Option<binaryfunc>, pub nb_multiply: Option<binaryfunc>, pub nb_divide: Option<binaryfunc>, pub nb_remainder: Option<binaryfunc>, pub nb_divmod: Option<binaryfunc>, pub nb_power: Option<ternaryfunc>, pub nb_negative: Option<unaryfunc>, pub nb_positive: Option<unaryfunc>, pub nb_absolute: Option<unaryfunc>, pub nb_nonzero: Option<inquiry>, pub nb_invert: Option<unaryfunc>, pub nb_lshift: Option<binaryfunc>, pub nb_rshift: Option<binaryfunc>, pub nb_and: Option<binaryfunc>, pub nb_xor: Option<binaryfunc>, pub nb_or: Option<binaryfunc>, pub nb_coerce: Option<coercion>, pub nb_c_int: Option<unaryfunc>, pub nb_long: Option<unaryfunc>, pub nb_float: Option<unaryfunc>, pub nb_oct: Option<unaryfunc>, pub nb_hex: Option<unaryfunc>, pub nb_inplace_add: Option<binaryfunc>, pub nb_inplace_subtract: Option<binaryfunc>, pub nb_inplace_multiply: Option<binaryfunc>, pub nb_inplace_divide: Option<binaryfunc>, pub nb_inplace_remainder: Option<binaryfunc>, pub nb_inplace_power: Option<ternaryfunc>, pub nb_inplace_lshift: Option<binaryfunc>, pub nb_inplace_rshift: Option<binaryfunc>, pub nb_inplace_and: Option<binaryfunc>, pub nb_inplace_xor: Option<binaryfunc>, pub nb_inplace_or: Option<binaryfunc>, pub nb_floor_divide: Option<binaryfunc>, pub nb_true_divide: Option<binaryfunc>, pub nb_inplace_floor_divide: Option<binaryfunc>, pub nb_inplace_true_divide: Option<binaryfunc>, pub nb_index: Option<unaryfunc>,
}

Fields§

§nb_add: Option<binaryfunc>§nb_subtract: Option<binaryfunc>§nb_multiply: Option<binaryfunc>§nb_divide: Option<binaryfunc>§nb_remainder: Option<binaryfunc>§nb_divmod: Option<binaryfunc>§nb_power: Option<ternaryfunc>§nb_negative: Option<unaryfunc>§nb_positive: Option<unaryfunc>§nb_absolute: Option<unaryfunc>§nb_nonzero: Option<inquiry>§nb_invert: Option<unaryfunc>§nb_lshift: Option<binaryfunc>§nb_rshift: Option<binaryfunc>§nb_and: Option<binaryfunc>§nb_xor: Option<binaryfunc>§nb_or: Option<binaryfunc>§nb_coerce: Option<coercion>§nb_c_int: Option<unaryfunc>§nb_long: Option<unaryfunc>§nb_float: Option<unaryfunc>§nb_oct: Option<unaryfunc>§nb_hex: Option<unaryfunc>§nb_inplace_add: Option<binaryfunc>§nb_inplace_subtract: Option<binaryfunc>§nb_inplace_multiply: Option<binaryfunc>§nb_inplace_divide: Option<binaryfunc>§nb_inplace_remainder: Option<binaryfunc>§nb_inplace_power: Option<ternaryfunc>§nb_inplace_lshift: Option<binaryfunc>§nb_inplace_rshift: Option<binaryfunc>§nb_inplace_and: Option<binaryfunc>§nb_inplace_xor: Option<binaryfunc>§nb_inplace_or: Option<binaryfunc>§nb_floor_divide: Option<binaryfunc>§nb_true_divide: Option<binaryfunc>§nb_inplace_floor_divide: Option<binaryfunc>§nb_inplace_true_divide: Option<binaryfunc>§nb_index: Option<unaryfunc>

Trait Implementations§

Source§

impl Clone for PyNumberMethods

Source§

fn clone(&self) -> PyNumberMethods

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 PyNumberMethods

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.