#[repr(C)]
pub union PyMethodDefPointer {
    pub PyCFunction: unsafe extern "C" fn(*mut PyObject, *mut PyObject) -> *mut PyObject,
    pub PyCFunctionWithKeywords: unsafe extern "C" fn(*mut PyObject, *mut PyObject, *mut PyObject) -> *mut PyObject,
    pub _PyCFunctionFast: unsafe extern "C" fn(*mut PyObject, *mut *mut PyObject, isize) -> *mut PyObject,
    pub PyCFunctionFast: unsafe extern "C" fn(*mut PyObject, *mut *mut PyObject, isize) -> *mut PyObject,
    pub _PyCFunctionFastWithKeywords: unsafe extern "C" fn(*mut PyObject, *const *mut PyObject, isize, *mut PyObject) -> *mut PyObject,
    pub PyCFunctionFastWithKeywords: unsafe extern "C" fn(*mut PyObject, *const *mut PyObject, isize, *mut PyObject) -> *mut PyObject,
    Void: *mut c_void,
}Expand description
Function types used to implement Python callables.
This function pointer must be accompanied by the correct ml_flags, otherwise the behavior is undefined.
See the Python C API documentation for more information.
Fields§
§PyCFunction: unsafe extern "C" fn(*mut PyObject, *mut PyObject) -> *mut PyObjectThis variant corresponds with METH_VARARGS or METH_NOARGS or METH_O.
PyCFunctionWithKeywords: unsafe extern "C" fn(*mut PyObject, *mut PyObject, *mut PyObject) -> *mut PyObjectThis variant corresponds with METH_VARARGS | METH_KEYWORDS.
_PyCFunctionFast: unsafe extern "C" fn(*mut PyObject, *mut *mut PyObject, isize) -> *mut PyObject👎Deprecated: renamed to 
PyCFunctionFastThis variant corresponds with METH_FASTCALL.
PyCFunctionFast: unsafe extern "C" fn(*mut PyObject, *mut *mut PyObject, isize) -> *mut PyObjectThis variant corresponds with METH_FASTCALL.
_PyCFunctionFastWithKeywords: unsafe extern "C" fn(*mut PyObject, *const *mut PyObject, isize, *mut PyObject) -> *mut PyObject👎Deprecated: renamed to 
PyCFunctionFastWithKeywordsThis variant corresponds with METH_FASTCALL | METH_KEYWORDS.
PyCFunctionFastWithKeywords: unsafe extern "C" fn(*mut PyObject, *const *mut PyObject, isize, *mut PyObject) -> *mut PyObjectThis variant corresponds with METH_FASTCALL | METH_KEYWORDS.
Void: *mut c_voidImplementations§
Trait Implementations§
Source§impl Clone for PyMethodDefPointer
 
impl Clone for PyMethodDefPointer
Source§fn clone(&self) -> PyMethodDefPointer
 
fn clone(&self) -> PyMethodDefPointer
Returns a copy 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 moreSource§impl Eq for PyMethodDefPointer
 
impl Eq for PyMethodDefPointer
#[doc(hidden)] fn assert_receiver_is_total_eq(&self)
Source§impl PartialEq for PyMethodDefPointer
 
impl PartialEq for PyMethodDefPointer
Source§impl Pointer for PyMethodDefPointer
 
impl Pointer for PyMethodDefPointer
impl Copy for PyMethodDefPointer
Auto Trait Implementations§
impl Freeze for PyMethodDefPointer
impl RefUnwindSafe for PyMethodDefPointer
impl !Send for PyMethodDefPointer
impl !Sync for PyMethodDefPointer
impl Unpin for PyMethodDefPointer
impl UnwindSafe for PyMethodDefPointer
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
 
impl<T> AssertNotZeroSized for T
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SizedTypeProperties for T
 
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
 
#[doc(hidden)] const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)] const LAYOUT: Layout = _
 
#[doc(hidden)] const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
 
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a 
[Self]. Read more