Struct pyo3_ffi::PyModuleDef_Slot
source · #[repr(C)]pub struct PyModuleDef_Slot {
pub slot: c_int,
pub value: *mut c_void,
}
Fields§
§slot: c_int
§value: *mut c_void
Trait Implementations§
source§impl Clone for PyModuleDef_Slot
impl Clone for PyModuleDef_Slot
source§fn clone(&self) -> PyModuleDef_Slot
fn clone(&self) -> PyModuleDef_Slot
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 PyModuleDef_Slot
impl Default for PyModuleDef_Slot
source§fn default() -> PyModuleDef_Slot
fn default() -> PyModuleDef_Slot
Returns the “default value” for a type. Read more
source§impl PartialEq<PyModuleDef_Slot> for PyModuleDef_Slot
impl PartialEq<PyModuleDef_Slot> for PyModuleDef_Slot
source§fn eq(&self, other: &PyModuleDef_Slot) -> bool
fn eq(&self, other: &PyModuleDef_Slot) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PyModuleDef_Slot
impl Eq for PyModuleDef_Slot
impl StructuralEq for PyModuleDef_Slot
impl StructuralPartialEq for PyModuleDef_Slot
Auto Trait Implementations§
impl RefUnwindSafe for PyModuleDef_Slot
impl !Send for PyModuleDef_Slot
impl !Sync for PyModuleDef_Slot
impl Unpin for PyModuleDef_Slot
impl UnwindSafe for PyModuleDef_Slot
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