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,
    /* 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: 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.
Implementations§
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 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