#[non_exhaustive]#[repr(u32)]pub enum cef_log_items_t {
LOG_ITEMS_DEFAULT = 0,
LOG_ITEMS_NONE = 1,
LOG_ITEMS_FLAG_PROCESS_ID = 2,
LOG_ITEMS_FLAG_THREAD_ID = 4,
LOG_ITEMS_FLAG_TIME_STAMP = 8,
LOG_ITEMS_FLAG_TICK_COUNT = 16,
}Expand description
Log items prepended to each log line.
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.
LOG_ITEMS_DEFAULT = 0
Prepend the default list of items.
LOG_ITEMS_NONE = 1
Prepend no items.
LOG_ITEMS_FLAG_PROCESS_ID = 2
Prepend the process ID.
LOG_ITEMS_FLAG_THREAD_ID = 4
Prepend the thread ID.
LOG_ITEMS_FLAG_TIME_STAMP = 8
Prepend the timestamp.
LOG_ITEMS_FLAG_TICK_COUNT = 16
Prepend the tickcount.
Trait Implementations§
Source§impl Clone for cef_log_items_t
impl Clone for cef_log_items_t
Source§fn clone(&self) -> cef_log_items_t
fn clone(&self) -> cef_log_items_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 cef_log_items_t
impl Debug for cef_log_items_t
Source§impl Hash for cef_log_items_t
impl Hash for cef_log_items_t
Source§impl PartialEq for cef_log_items_t
impl PartialEq for cef_log_items_t
impl Copy for cef_log_items_t
impl Eq for cef_log_items_t
impl StructuralPartialEq for cef_log_items_t
Auto Trait Implementations§
impl Freeze for cef_log_items_t
impl RefUnwindSafe for cef_log_items_t
impl Send for cef_log_items_t
impl Sync for cef_log_items_t
impl Unpin for cef_log_items_t
impl UnwindSafe for cef_log_items_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