#[repr(C)]pub struct PyMethodDef {
pub ml_name: *const c_char,
pub ml_meth: PyMethodDefPointer,
pub ml_flags: c_int,
pub ml_doc: *const c_char,
}
Expand description
Represents the PyMethodDef structure.
Note that CPython may leave fields uninitialized. You must ensure that
ml_name
!= NULL before dereferencing or reading other fields.
Fields§
§ml_name: *const c_char
§ml_meth: PyMethodDefPointer
§ml_flags: c_int
§ml_doc: *const c_char
Implementations§
Source§impl PyMethodDef
impl PyMethodDef
pub const fn zeroed() -> PyMethodDef
Trait Implementations§
Source§impl Clone for PyMethodDef
impl Clone for PyMethodDef
Source§fn clone(&self) -> PyMethodDef
fn clone(&self) -> PyMethodDef
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 Default for PyMethodDef
impl Default for PyMethodDef
Source§fn default() -> PyMethodDef
fn default() -> PyMethodDef
Returns the “default value” for a type. Read more
Source§impl PartialEq for PyMethodDef
impl PartialEq for PyMethodDef
impl Copy for PyMethodDef
impl Eq for PyMethodDef
impl StructuralPartialEq for PyMethodDef
Auto Trait Implementations§
impl Freeze for PyMethodDef
impl RefUnwindSafe for PyMethodDef
impl !Send for PyMethodDef
impl !Sync for PyMethodDef
impl Unpin for PyMethodDef
impl UnwindSafe for PyMethodDef
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§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
)