#[repr(C)]pub struct PyTracebackObject {
pub ob_refcnt: Py_ssize_t,
pub ob_type: *mut PyTypeObject,
pub tb_next: *mut PyTracebackObject,
pub tb_frame: *mut PyFrameObject,
pub tb_lasti: c_int,
pub tb_lineno: c_int,
}
Fields§
§ob_refcnt: Py_ssize_t
§ob_type: *mut PyTypeObject
§tb_next: *mut PyTracebackObject
§tb_frame: *mut PyFrameObject
§tb_lasti: c_int
§tb_lineno: c_int
Trait Implementations§
Source§impl Clone for PyTracebackObject
impl Clone for PyTracebackObject
Source§fn clone(&self) -> PyTracebackObject
fn clone(&self) -> PyTracebackObject
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 PyTracebackObject
Auto Trait Implementations§
impl Freeze for PyTracebackObject
impl RefUnwindSafe for PyTracebackObject
impl !Send for PyTracebackObject
impl !Sync for PyTracebackObject
impl Unpin 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