#[repr(C)]pub struct PyMethodChain {
pub methods: *mut PyMethodDef,
pub link: *mut PyMethodChain,
}
Fields§
§methods: *mut PyMethodDef
§link: *mut PyMethodChain
Trait Implementations§
Source§impl Clone for PyMethodChain
impl Clone for PyMethodChain
Source§fn clone(&self) -> PyMethodChain
fn clone(&self) -> PyMethodChain
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 PyMethodChain
Auto Trait Implementations§
impl Freeze for PyMethodChain
impl RefUnwindSafe for PyMethodChain
impl !Send for PyMethodChain
impl !Sync for PyMethodChain
impl Unpin for PyMethodChain
impl UnwindSafe for PyMethodChain
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