#[repr(u8)]pub enum DiagnosticSource {
Lifecycle = 0,
Invocation = 1,
Admission = 2,
Supervision = 3,
Shutdown = 4,
RuntimeFailure = 5,
}Expand description
The Kernel subsystem that produced one Runtime Diagnostic.
Variants§
Lifecycle = 0
Module generation preparation, activation, readiness, or deactivation.
Invocation = 1
A Request or Stream-open operation entered or left the Kernel.
Admission = 2
Bounded work admission or Event delivery was accepted or rejected.
Supervision = 3
Provider generation replacement and restart-budget decisions.
Shutdown = 4
App shutdown admission and cleanup.
RuntimeFailure = 5
A sanitized Runtime Failure fact.
Trait Implementations§
Source§impl Clone for DiagnosticSource
impl Clone for DiagnosticSource
Source§fn clone(&self) -> DiagnosticSource
fn clone(&self) -> DiagnosticSource
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 moreimpl Copy for DiagnosticSource
Source§impl Debug for DiagnosticSource
impl Debug for DiagnosticSource
impl Eq for DiagnosticSource
Source§impl PartialEq for DiagnosticSource
impl PartialEq for DiagnosticSource
impl StructuralPartialEq for DiagnosticSource
Auto Trait Implementations§
impl Freeze for DiagnosticSource
impl RefUnwindSafe for DiagnosticSource
impl Send for DiagnosticSource
impl Sync for DiagnosticSource
impl Unpin for DiagnosticSource
impl UnsafeUnpin for DiagnosticSource
impl UnwindSafe for DiagnosticSource
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