#[repr(C)]pub struct PyImport_Struct_inittab {
pub name: *mut c_char,
pub initfunc: Option<unsafe extern "C" fn()>,
}
Fields§
§name: *mut c_char
§initfunc: Option<unsafe extern "C" fn()>
Trait Implementations§
Source§impl Clone for PyImport_Struct_inittab
impl Clone for PyImport_Struct_inittab
Source§fn clone(&self) -> PyImport_Struct_inittab
fn clone(&self) -> PyImport_Struct_inittab
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 moreimpl Copy for PyImport_Struct_inittab
Auto Trait Implementations§
impl Freeze for PyImport_Struct_inittab
impl RefUnwindSafe for PyImport_Struct_inittab
impl !Send for PyImport_Struct_inittab
impl !Sync for PyImport_Struct_inittab
impl Unpin for PyImport_Struct_inittab
impl UnwindSafe for PyImport_Struct_inittab
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