#[repr(C)]pub struct wrapperbase {
pub name: *mut c_char,
pub offset: c_int,
pub function: *mut c_void,
pub wrapper: Option<wrapperfunc>,
pub doc: *mut c_char,
pub flags: c_int,
pub name_strobj: *mut PyObject,
}
Fields§
§name: *mut c_char
§offset: c_int
§function: *mut c_void
§wrapper: Option<wrapperfunc>
§doc: *mut c_char
§flags: c_int
§name_strobj: *mut PyObject
Trait Implementations§
Source§impl Clone for wrapperbase
impl Clone for wrapperbase
Source§fn clone(&self) -> wrapperbase
fn clone(&self) -> wrapperbase
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 wrapperbase
Auto Trait Implementations§
impl Freeze for wrapperbase
impl RefUnwindSafe for wrapperbase
impl !Send for wrapperbase
impl !Sync for wrapperbase
impl Unpin for wrapperbase
impl UnwindSafe for wrapperbase
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