#[repr(C)]pub struct PyMethodDescrObject {
pub d_common: PyDescrObject,
pub d_method: *mut PyMethodDef,
pub vectorcall: Option<vectorcallfunc>,
}Available on neither
Py_LIMITED_API nor RustPython.Fields§
§d_common: PyDescrObject§d_method: *mut PyMethodDef§vectorcall: Option<vectorcallfunc>Available on non-
PyPy only.Auto Trait Implementations§
impl !Send for PyMethodDescrObject
impl !Sync for PyMethodDescrObject
impl Freeze for PyMethodDescrObject
impl RefUnwindSafe for PyMethodDescrObject
impl Unpin for PyMethodDescrObject
impl UnsafeUnpin for PyMethodDescrObject
impl UnwindSafe for PyMethodDescrObject
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