Struct python27_sys::PyTracebackObject [] [src]

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

impl Clone for PyTracebackObject
[src]

fn clone(&self) -> PyTracebackObject

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for PyTracebackObject
[src]