Struct cargo_tarpaulin::test_loader::TracerData
source · [−]pub struct TracerData {
pub trace_type: LineType,
pub address: Option<u64>,
pub length: u64,
pub fn_name: Option<String>,
}
Fields
trace_type: LineType
Currently used to find generated __test::main and remove from coverage, may have uses in future for finding conditions etc
address: Option<u64>
Start address of the line
length: u64
Length of the instruction
fn_name: Option<String>
Function name
Trait Implementations
sourceimpl Clone for TracerData
impl Clone for TracerData
sourcefn clone(&self) -> TracerData
fn clone(&self) -> TracerData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for TracerData
impl Send for TracerData
impl Sync for TracerData
impl Unpin for TracerData
impl UnwindSafe for TracerData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more