#[repr(C)]pub struct PyStatus {
pub _type: _PyStatus_TYPE,
pub func: *const c_char,
pub err_msg: *const c_char,
pub exitcode: c_int,
}Available on
Py_3_8 and non-PyPy only.Fields§
§_type: _PyStatus_TYPE§func: *const c_char§err_msg: *const c_char§exitcode: c_intTrait Implementations§
impl Copy for PyStatus
Available on non-
Py_LIMITED_API only.Auto Trait Implementations§
impl Freeze for PyStatus
impl RefUnwindSafe for PyStatus
impl !Send for PyStatus
impl !Sync for PyStatus
impl Unpin for PyStatus
impl UnwindSafe for PyStatus
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