Struct simics_api_sys::_err_stackitem
source · #[repr(C)]pub struct _err_stackitem {
pub exc_type: *mut PyObject,
pub exc_value: *mut PyObject,
pub exc_traceback: *mut PyObject,
pub previous_item: *mut _err_stackitem,
}
Fields§
§exc_type: *mut PyObject
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 PyObject
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 PyObject
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
Trait Implementations§
source§impl Clone for _err_stackitem
impl Clone for _err_stackitem
source§fn clone(&self) -> _err_stackitem
fn clone(&self) -> _err_stackitem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for _err_stackitem
impl Debug for _err_stackitem
source§impl Default for _err_stackitem
impl Default for _err_stackitem
source§impl Hash for _err_stackitem
impl Hash for _err_stackitem
source§impl Ord for _err_stackitem
impl Ord for _err_stackitem
source§fn cmp(&self, other: &_err_stackitem) -> Ordering
fn cmp(&self, other: &_err_stackitem) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for _err_stackitem
impl PartialEq for _err_stackitem
source§impl PartialOrd for _err_stackitem
impl PartialOrd for _err_stackitem
impl Copy for _err_stackitem
impl Eq for _err_stackitem
impl StructuralPartialEq for _err_stackitem
Auto Trait Implementations§
impl Freeze for _err_stackitem
impl RefUnwindSafe for _err_stackitem
impl !Send for _err_stackitem
impl !Sync for _err_stackitem
impl Unpin for _err_stackitem
impl UnwindSafe for _err_stackitem
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)