pub struct UnclassifiedLine {
pub line_number: u64,
pub reason: UnclassifiedReason,
pub data: Option<String>,
}Expand description
Record of a single unclassified line, captured when tracking is enabled.
Fields§
§line_number: u64§reason: UnclassifiedReason§data: Option<String>The full line content; only populated under UnclassifiedTracking::CaptureData.
Trait Implementations§
Source§impl Clone for UnclassifiedLine
impl Clone for UnclassifiedLine
Source§fn clone(&self) -> UnclassifiedLine
fn clone(&self) -> UnclassifiedLine
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 UnclassifiedLine
impl Debug for UnclassifiedLine
Source§impl PartialEq for UnclassifiedLine
impl PartialEq for UnclassifiedLine
Source§fn eq(&self, other: &UnclassifiedLine) -> bool
fn eq(&self, other: &UnclassifiedLine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UnclassifiedLine
impl StructuralPartialEq for UnclassifiedLine
Auto Trait Implementations§
impl Freeze for UnclassifiedLine
impl RefUnwindSafe for UnclassifiedLine
impl Send for UnclassifiedLine
impl Sync for UnclassifiedLine
impl Unpin for UnclassifiedLine
impl UnsafeUnpin for UnclassifiedLine
impl UnwindSafe for UnclassifiedLine
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.