Type Alias simics_api_sys::bindings::_PyErr_StackItem
source · pub type _PyErr_StackItem = _err_stackitem;
Aliased Type§
struct _PyErr_StackItem {
pub exc_type: *mut _object,
pub exc_value: *mut _object,
pub exc_traceback: *mut _object,
pub previous_item: *mut _err_stackitem,
}
Fields§
§exc_type: *mut _object
This struct represents an entry on the exception stack, which is a per-coroutine state. (Coroutine in the computer science sense, including the thread and generators). This ensures that the exception state is not impacted by “yields” from an except handler.
exc_value: *mut _object
This struct represents an entry on the exception stack, which is a per-coroutine state. (Coroutine in the computer science sense, including the thread and generators). This ensures that the exception state is not impacted by “yields” from an except handler.
exc_traceback: *mut _object
This struct represents an entry on the exception stack, which is a per-coroutine state. (Coroutine in the computer science sense, including the thread and generators). This ensures that the exception state is not impacted by “yields” from an except handler.
previous_item: *mut _err_stackitem