Struct python27_sys::PyTracebackObject[][src]

#[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

Trait Implementations

impl Copy for PyTracebackObject
[src]

impl Clone for PyTracebackObject
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations