Union pyo3_ffi::PyMethodDefPointer
source · #[repr(C)]
pub union PyMethodDefPointer {
pub PyCFunction: PyCFunction,
pub PyCFunctionWithKeywords: PyCFunctionWithKeywords,
pub _PyCFunctionFast: _PyCFunctionFast,
pub _PyCFunctionFastWithKeywords: _PyCFunctionFastWithKeywords,
pub PyCMethod: PyCMethod,
/* private fields */
}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: _PyCFunctionFastThis variant corresponds with METH_FASTCALL.
_PyCFunctionFastWithKeywords: _PyCFunctionFastWithKeywordsThis variant corresponds with METH_FASTCALL | METH_KEYWORDS.
PyCMethod: PyCMethodThis variant corresponds with METH_METHOD | METH_FASTCALL | METH_KEYWORDS.
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 PartialEq for PyMethodDefPointer
impl PartialEq for PyMethodDefPointer
source§impl Pointer for PyMethodDefPointer
impl Pointer for PyMethodDefPointer
impl Copy for PyMethodDefPointer
impl Eq 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> 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)