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