#[repr(C)]pub struct PyTracebackObject {
pub ob_base: PyObject,
pub tb_next: *mut PyTracebackObject,
pub tb_frame: *mut PyFrameObject,
pub tb_lasti: c_int,
pub tb_lineno: c_int,
}Fields§
§ob_base: PyObject§tb_next: *mut PyTracebackObject§tb_frame: *mut PyFrameObject§tb_lasti: c_int§tb_lineno: c_intAuto Trait Implementations§
impl !Send for PyTracebackObject
impl !Sync for PyTracebackObject
impl Freeze for PyTracebackObject
impl RefUnwindSafe for PyTracebackObject
impl Unpin for PyTracebackObject
impl UnsafeUnpin for PyTracebackObject
impl UnwindSafe for PyTracebackObject
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