Struct python27_sys::PyThreadState[][src]

#[repr(C)]
pub struct PyThreadState { pub next: *mut PyThreadState, pub interp: *mut PyInterpreterState, pub frame: *mut PyFrameObject, pub recursion_depth: c_int, pub tracing: c_int, pub use_tracing: c_int, pub c_profilefunc: Option<Py_tracefunc>, pub c_tracefunc: Option<Py_tracefunc>, pub c_profileobj: *mut PyObject, pub c_traceobj: *mut PyObject, pub curexc_type: *mut PyObject, pub curexc_value: *mut PyObject, pub curexc_traceback: *mut PyObject, pub exc_type: *mut PyObject, pub exc_value: *mut PyObject, pub exc_traceback: *mut PyObject, pub dict: *mut PyObject, pub tick_counter: c_int, pub gilstate_counter: c_int, pub async_exc: *mut PyObject, pub thread_id: c_long, pub trash_delete_nesting: c_int, pub trash_delete_later: *mut PyObject, }

Fields

Trait Implementations

impl Copy for PyThreadState
[src]

impl Clone for PyThreadState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for PyThreadState

impl !Sync for PyThreadState