Struct pyo3_ffi::PyMethodDef
source · #[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,
}
Fields
ml_name: *const c_char
ml_meth: PyMethodDefPointer
ml_flags: c_int
ml_doc: *const c_char
Implementations
sourceimpl PyMethodDef
impl PyMethodDef
pub const fn zeroed() -> PyMethodDef
Trait Implementations
sourceimpl Clone for PyMethodDef
impl Clone for PyMethodDef
sourcefn clone(&self) -> PyMethodDef
fn clone(&self) -> PyMethodDef
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 moresourceimpl Default for PyMethodDef
impl Default for PyMethodDef
sourcefn default() -> PyMethodDef
fn default() -> PyMethodDef
Returns the “default value” for a type. Read more
sourceimpl PartialEq<PyMethodDef> for PyMethodDef
impl PartialEq<PyMethodDef> for PyMethodDef
sourcefn eq(&self, other: &PyMethodDef) -> bool
fn eq(&self, other: &PyMethodDef) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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