Struct python27_sys::PyThreadState[][src]

#[repr(C)]
pub struct PyThreadState {
Show 23 fields 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

next: *mut PyThreadStateinterp: *mut PyInterpreterStateframe: *mut PyFrameObjectrecursion_depth: c_inttracing: c_intuse_tracing: c_intc_profilefunc: Option<Py_tracefunc>c_tracefunc: Option<Py_tracefunc>c_profileobj: *mut PyObjectc_traceobj: *mut PyObjectcurexc_type: *mut PyObjectcurexc_value: *mut PyObjectcurexc_traceback: *mut PyObjectexc_type: *mut PyObjectexc_value: *mut PyObjectexc_traceback: *mut PyObjectdict: *mut PyObjecttick_counter: c_intgilstate_counter: c_intasync_exc: *mut PyObjectthread_id: c_longtrash_delete_nesting: c_inttrash_delete_later: *mut PyObject

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.