#[repr(C)]pub union PyMethodDefPointer {
pub PyCFunction: PyCFunction,
pub PyCFunctionWithKeywords: PyCFunctionWithKeywords,
pub _PyCFunctionFast: PyCFunctionFast,
pub PyCFunctionFast: PyCFunctionFast,
pub _PyCFunctionFastWithKeywords: PyCFunctionFastWithKeywords,
pub PyCFunctionFastWithKeywords: PyCFunctionFastWithKeywords,
pub PyCMethod: PyCMethod,
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: PyCFunctionThis variant corresponds with METH_VARARGS or METH_NOARGS or METH_O.
PyCFunctionWithKeywords: PyCFunctionWithKeywordsThis variant corresponds with METH_VARARGS | METH_KEYWORDS.
_PyCFunctionFast: PyCFunctionFast👎Deprecated:
renamed to PyCFunctionFast
Available on
Py_3_10 or non-Py_LIMITED_API only.This variant corresponds with METH_FASTCALL.
PyCFunctionFast: PyCFunctionFastAvailable on
Py_3_10 or non-Py_LIMITED_API only.This variant corresponds with METH_FASTCALL.
_PyCFunctionFastWithKeywords: PyCFunctionFastWithKeywords👎Deprecated:
renamed to PyCFunctionFastWithKeywords
Available on
Py_3_10 or non-Py_LIMITED_API only.This variant corresponds with METH_FASTCALL | METH_KEYWORDS.
PyCFunctionFastWithKeywords: PyCFunctionFastWithKeywordsAvailable on
Py_3_10 or non-Py_LIMITED_API only.This variant corresponds with METH_FASTCALL | METH_KEYWORDS.
PyCMethod: PyCMethodAvailable on
Py_3_9 and non-Py_LIMITED_API only.This variant corresponds with METH_METHOD | 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 duplicate 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
Source§#[doc(hidden)]fn assert_fields_are_eq(&self)
#[doc(hidden)]fn assert_fields_are_eq(&self)
🔬This is a nightly-only experimental API. (
derive_eq_internals)1.0.0 · Source§#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
👎Deprecated since 1.95.0:
implementation detail of #[derive(Eq)]
Source§impl PartialEq for PyMethodDefPointer
impl PartialEq for PyMethodDefPointer
Source§impl Pointer for PyMethodDefPointer
impl Pointer for PyMethodDefPointer
impl Copy for PyMethodDefPointer
impl TrivialClone 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 UnsafeUnpin for PyMethodDefPointer
impl UnwindSafe for PyMethodDefPointer
Blanket Implementations§
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,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type)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