[][src]Struct lcov::report::Report

pub struct Report {
    pub sections: Sections,
}

An accumulated coverage information from some LCOV tracefiles.

Report is used for merging/filtering the coverage information.

Examples

Merges LCOV tracefiles and outputs the result in LCOV tracefile format:

use lcov::Report;

let mut report = Report::new();

// Merges a first file.
report.merge(Report::from_file("report_a.info")?)?;

// Merges a second file.
report.merge(Report::from_file("report_b.info")?)?;

// Outputs the merge result in LCOV tracefile format.
for record in report.into_records() {
    println!("{}", record);
}

Fields

sections: Sections

Coverage information about every source files.

Methods

impl Report[src]

pub fn new() -> Self[src]

Creates an empty report.

Examples

use lcov::Report;
let report = Report::new();

pub fn from_reader<I, E>(iter: I) -> Result<Self, ParseError> where
    I: IntoIterator<Item = Result<Record, E>>,
    E: Into<Error>, 
[src]

Creates a report from LCOV record reader.

Examples

use lcov::{Report, Reader};

let input = "\
TN:test_name
SF:/path/to/source/file.rs
DA:1,2
DA:3,0
DA:5,6
LF:3
LH:2
end_of_record
";
let reader = Reader::new(input.as_bytes());
let report = Report::from_reader(reader)?;

pub fn from_file<P>(path: P) -> Result<Self, ParseError> where
    P: AsRef<Path>, 
[src]

Creates a report from LCOV tracefile.

Examples

use lcov::Report;

let report = Report::from_file("report.info")?;

pub fn merge(&mut self, other: Self) -> Result<(), MergeError>[src]

Merges a report into self.

Examples

use lcov::Report;

let mut report = Report::from_file("report1.info")?;
report.merge(Report::from_file("report2.info")?)?;

pub fn merge_lossy(&mut self, other: Self)[src]

Merges a report into self with ignoring an Errors.

Examples

use lcov::Report;

let mut report = Report::from_file("report1.info")?;
report.merge_lossy(Report::from_file("report2.info")?);

Important traits for IntoRecords
pub fn into_records(self) -> IntoRecords[src]

Creates an iterator which iterates over [LCOV section].

Examples

use lcov::Report;

let mut report = Report::from_file("report.info")?;
// ... Manipulate report
for record in report.into_records() {
   println!("{}", record);
}

Trait Implementations

impl Default for Report[src]

impl Clone for Report[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Report[src]

impl PartialEq<Report> for Report[src]

impl Debug for Report[src]

Auto Trait Implementations

impl Send for Report

impl Sync for Report

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.