#[repr(u16)]pub enum EventType {
Debug = 1,
Info = 2,
Error = 3,
Critical = 4,
}Expand description
The type of a cFE event message, indicating its severity.
Variants§
Debug = 1
A low-priority event for debugging purposes.
Info = 2
An informational event about a nominal state or action.
Error = 3
An error event that is not catastrophic.
Critical = 4
A critical error event that may require intervention.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnsafeUnpin for EventType
impl UnwindSafe for EventType
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