pub struct ExceptionSummary {
pub context_log_id: u32,
pub task_id: TaskId,
pub reason: String<{ _ }>,
}Expand description
A summary of an exception log entry.
Fields§
§context_log_id: u32The ID of the exception log entry.
task_id: TaskIdThe OSAL task ID of the task that caused the exception.
reason: String<{ _ }>A descriptive reason for the exception.
Trait Implementations§
Source§impl Clone for ExceptionSummary
impl Clone for ExceptionSummary
Source§fn clone(&self) -> ExceptionSummary
fn clone(&self) -> ExceptionSummary
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 ExceptionSummary
impl RefUnwindSafe for ExceptionSummary
impl Send for ExceptionSummary
impl Sync for ExceptionSummary
impl Unpin for ExceptionSummary
impl UnsafeUnpin for ExceptionSummary
impl UnwindSafe for ExceptionSummary
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