Struct simics_api_sys::PyMethodDef
source · #[repr(C)]pub struct PyMethodDef {
pub ml_name: *const c_char,
pub ml_meth: PyCFunction,
pub ml_flags: c_int,
pub ml_doc: *const c_char,
}
Fields§
§ml_name: *const c_char
The name of the built-in function/method
ml_meth: PyCFunction
The C function that implements it
ml_flags: c_int
Combination of METH_xxx flags, which mostly describe the args expected by the C func
ml_doc: *const c_char
The doc attribute, or NULL
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 Debug for PyMethodDef
impl Debug for PyMethodDef
source§impl Default for PyMethodDef
impl Default for PyMethodDef
source§impl Hash for PyMethodDef
impl Hash for PyMethodDef
source§impl Ord for PyMethodDef
impl Ord for PyMethodDef
source§fn cmp(&self, other: &PyMethodDef) -> Ordering
fn cmp(&self, other: &PyMethodDef) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for PyMethodDef
impl PartialEq for PyMethodDef
source§impl PartialOrd for PyMethodDef
impl PartialOrd 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
)