pub struct ExceptionState {
pub state: Vec<u32>,
pub count: u32,
}Expand description
Exception state from the faulting thread.
Fields§
§state: Vec<u32>Raw exception state register values (e.g., trapno, cpu, err, faultvaddr).
count: u32Number of valid words in state.
Trait Implementations§
Source§impl Clone for ExceptionState
impl Clone for ExceptionState
Source§fn clone(&self) -> ExceptionState
fn clone(&self) -> ExceptionState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExceptionState
impl RefUnwindSafe for ExceptionState
impl Send for ExceptionState
impl Sync for ExceptionState
impl Unpin for ExceptionState
impl UnsafeUnpin for ExceptionState
impl UnwindSafe for ExceptionState
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
Mutably borrows from an owned value. Read more