#[non_exhaustive]#[repr(i32)]pub enum log_id_t {
MAIN = 0,
RADIO = 1,
EVENTS = 2,
SYSTEM = 3,
CRASH = 4,
STATS = 5,
SECURITY = 6,
KERNEL = 7,
MAX = 8,
DEFAULT = 2_147_483_647,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MAIN = 0
RADIO = 1
EVENTS = 2
SYSTEM = 3
CRASH = 4
STATS = 5
SECURITY = 6
KERNEL = 7
MAX = 8
DEFAULT = 2_147_483_647
Trait Implementations§
Auto Trait Implementations§
impl Freeze for log_id_t
impl RefUnwindSafe for log_id_t
impl Send for log_id_t
impl Sync for log_id_t
impl Unpin for log_id_t
impl UnwindSafe for log_id_t
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