#[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 PyObject
This variant corresponds with METH_VARARGS
or METH_NOARGS
or METH_O
.
PyCFunctionWithKeywords: unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject, _: *mut PyObject) -> *mut PyObject
This variant corresponds with METH_VARARGS
| METH_KEYWORDS
.
_PyCFunctionFast: unsafe extern "C" fn(_: *mut PyObject, _: *mut *mut PyObject, _: isize) -> *mut PyObject
👎Deprecated: renamed to
PyCFunctionFast
Available on
Py_3_10
or non-Py_LIMITED_API
only.This variant corresponds with METH_FASTCALL
.
PyCFunctionFast: unsafe extern "C" fn(_: *mut PyObject, _: *mut *mut PyObject, _: isize) -> *mut PyObject
Available on
Py_3_10
or non-Py_LIMITED_API
only.This variant corresponds with METH_FASTCALL
.
_PyCFunctionFastWithKeywords: unsafe extern "C" fn(_: *mut PyObject, _: *const *mut PyObject, _: isize, _: *mut PyObject) -> *mut PyObject
👎Deprecated: renamed to
PyCFunctionFastWithKeywords
Available on
Py_3_10
or non-Py_LIMITED_API
only.This variant corresponds with METH_FASTCALL
| METH_KEYWORDS
.
PyCFunctionFastWithKeywords: unsafe extern "C" fn(_: *mut PyObject, _: *const *mut PyObject, _: isize, _: *mut PyObject) -> *mut PyObject
Available on
Py_3_10
or non-Py_LIMITED_API
only.This variant corresponds with METH_FASTCALL
| METH_KEYWORDS
.
Void: *mut c_void
Implementations§
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 more