Union pyo3_ffi::PyMethodDefPointer
source · [−]#[repr(C)]
pub union PyMethodDefPointer {
pub PyCFunction: PyCFunction,
pub PyCFunctionWithKeywords: PyCFunctionWithKeywords,
pub _PyCFunctionFast: _PyCFunctionFast,
pub _PyCFunctionFastWithKeywords: _PyCFunctionFastWithKeywords,
}
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: PyCFunction
This variant corresponds with METH_VARARGS
or METH_NOARGS
or METH_O
.
PyCFunctionWithKeywords: PyCFunctionWithKeywords
This variant corresponds with METH_VARARGS
| METH_KEYWORDS
.
_PyCFunctionFast: _PyCFunctionFast
This variant corresponds with METH_FASTCALL
.
_PyCFunctionFastWithKeywords: _PyCFunctionFastWithKeywords
This variant corresponds with METH_FASTCALL
| METH_KEYWORDS
.
Trait Implementations
sourceimpl Clone for PyMethodDefPointer
impl Clone for PyMethodDefPointer
sourcefn clone(&self) -> PyMethodDefPointer
fn clone(&self) -> PyMethodDefPointer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for PyMethodDefPointer
Auto Trait Implementations
impl RefUnwindSafe for PyMethodDefPointer
impl Send for PyMethodDefPointer
impl Sync for PyMethodDefPointer
impl Unpin for PyMethodDefPointer
impl UnwindSafe for PyMethodDefPointer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more