Struct pyo3::ffi::PyMethodDef
source · #[repr(C)]pub struct PyMethodDef {
pub ml_name: *const i8,
pub ml_meth: PyMethodDefPointer,
pub ml_flags: i32,
pub ml_doc: *const i8,
}
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 i8
§ml_meth: PyMethodDefPointer
§ml_flags: i32
§ml_doc: *const i8
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<PyMethodDef> for PyMethodDef
impl PartialEq<PyMethodDef> for PyMethodDef
source§fn eq(&self, other: &PyMethodDef) -> bool
fn eq(&self, other: &PyMethodDef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PyMethodDef
impl Eq for PyMethodDef
impl StructuralEq for PyMethodDef
impl StructuralPartialEq for PyMethodDef
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.