pub struct DiagnosticEvent {
pub severity: DiagnosticSeverity,
pub stage: KernelStage,
pub code: String,
pub message: String,
}Fields§
§severity: DiagnosticSeverity§stage: KernelStage§code: StringStable machine-readable identifier suitable for tests and UI routing.
message: StringTrait Implementations§
Source§impl Clone for DiagnosticEvent
impl Clone for DiagnosticEvent
Source§fn clone(&self) -> DiagnosticEvent
fn clone(&self) -> DiagnosticEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiagnosticEvent
impl Debug for DiagnosticEvent
Source§impl<'de> Deserialize<'de> for DiagnosticEvent
impl<'de> Deserialize<'de> for DiagnosticEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiagnosticEvent
impl RefUnwindSafe for DiagnosticEvent
impl Send for DiagnosticEvent
impl Sync for DiagnosticEvent
impl Unpin for DiagnosticEvent
impl UnsafeUnpin for DiagnosticEvent
impl UnwindSafe for DiagnosticEvent
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