Enum binaryninja::logger::Level
#[repr(u32)]pub enum Level {
DebugLog = 0,
InfoLog = 1,
WarningLog = 2,
ErrorLog = 3,
AlertLog = 4,
}
Expand description
! Console log levels
Variants§
DebugLog = 0
InfoLog = 1
! Debug logging level, most verbose logging level
WarningLog = 2
! Information logging level, default logging level
ErrorLog = 3
! Warning logging level, messages show with warning icon in the UI
AlertLog = 4
! Error logging level, messages show with error icon in the UI
Trait Implementations§
§impl Clone for BNLogLevel
impl Clone for BNLogLevel
§fn clone(&self) -> BNLogLevel
fn clone(&self) -> BNLogLevel
Returns a copy 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 more§impl Debug for BNLogLevel
impl Debug for BNLogLevel
§impl Hash for BNLogLevel
impl Hash for BNLogLevel
§impl PartialEq for BNLogLevel
impl PartialEq for BNLogLevel
§fn eq(&self, other: &BNLogLevel) -> bool
fn eq(&self, other: &BNLogLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BNLogLevel
impl Eq for BNLogLevel
impl StructuralPartialEq for BNLogLevel
Auto Trait Implementations§
impl RefUnwindSafe for BNLogLevel
impl Send for BNLogLevel
impl Sync for BNLogLevel
impl Unpin for BNLogLevel
impl UnwindSafe for BNLogLevel
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