pub enum UnclassifiedTracking {
CountOnly,
TrackLines,
CaptureData,
}Expand description
Controls how much detail is recorded for lines that couldn’t be fully classified.
Higher fidelity levels allocate more memory. The default is CountOnly.
Variants§
CountOnly
Increment the counter only — zero allocation.
TrackLines
Record line number and reason for each unclassified line.
CaptureData
Like TrackLines plus the full line content.
Trait Implementations§
Source§impl Clone for UnclassifiedTracking
impl Clone for UnclassifiedTracking
Source§fn clone(&self) -> UnclassifiedTracking
fn clone(&self) -> UnclassifiedTracking
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnclassifiedTracking
impl Debug for UnclassifiedTracking
Source§impl PartialEq for UnclassifiedTracking
impl PartialEq for UnclassifiedTracking
Source§fn eq(&self, other: &UnclassifiedTracking) -> bool
fn eq(&self, other: &UnclassifiedTracking) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UnclassifiedTracking
impl Eq for UnclassifiedTracking
impl StructuralPartialEq for UnclassifiedTracking
Auto Trait Implementations§
impl Freeze for UnclassifiedTracking
impl RefUnwindSafe for UnclassifiedTracking
impl Send for UnclassifiedTracking
impl Sync for UnclassifiedTracking
impl Unpin for UnclassifiedTracking
impl UnsafeUnpin for UnclassifiedTracking
impl UnwindSafe for UnclassifiedTracking
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.