#[repr(u32)]pub enum BunLogLevel {
BUN_LOG_LEVEL_VERBOSE = 0,
BUN_LOG_LEVEL_DEBUG = 1,
BUN_LOG_LEVEL_INFO = 2,
BUN_LOG_LEVEL_WARN = 3,
BUN_LOG_LEVEL_ERROR = 4,
}Variants§
BUN_LOG_LEVEL_VERBOSE = 0
BUN_LOG_LEVEL_DEBUG = 1
BUN_LOG_LEVEL_INFO = 2
BUN_LOG_LEVEL_WARN = 3
BUN_LOG_LEVEL_ERROR = 4
Trait Implementations§
Source§impl Clone for BunLogLevel
impl Clone for BunLogLevel
Source§fn clone(&self) -> BunLogLevel
fn clone(&self) -> BunLogLevel
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 BunLogLevel
impl Debug for BunLogLevel
Source§impl Hash for BunLogLevel
impl Hash for BunLogLevel
Source§impl PartialEq for BunLogLevel
impl PartialEq for BunLogLevel
impl Copy for BunLogLevel
impl Eq for BunLogLevel
impl StructuralPartialEq for BunLogLevel
Auto Trait Implementations§
impl Freeze for BunLogLevel
impl RefUnwindSafe for BunLogLevel
impl Send for BunLogLevel
impl Sync for BunLogLevel
impl Unpin for BunLogLevel
impl UnwindSafe for BunLogLevel
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