#[non_exhaustive]#[repr(u32)]pub enum sd_log_level_t {
SD_LOG_DEBUG = 0,
SD_LOG_INFO = 1,
SD_LOG_WARN = 2,
SD_LOG_ERROR = 3,
}
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.
Trait Implementations§
Source§impl Clone for sd_log_level_t
impl Clone for sd_log_level_t
Source§fn clone(&self) -> sd_log_level_t
fn clone(&self) -> sd_log_level_t
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 moreSource§impl Debug for sd_log_level_t
impl Debug for sd_log_level_t
Source§impl Hash for sd_log_level_t
impl Hash for sd_log_level_t
Source§impl PartialEq for sd_log_level_t
impl PartialEq for sd_log_level_t
impl Copy for sd_log_level_t
impl Eq for sd_log_level_t
impl StructuralPartialEq for sd_log_level_t
Auto Trait Implementations§
impl Freeze for sd_log_level_t
impl RefUnwindSafe for sd_log_level_t
impl Send for sd_log_level_t
impl Sync for sd_log_level_t
impl Unpin for sd_log_level_t
impl UnwindSafe for sd_log_level_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