Struct cov::report::FileSummary [] [src]

pub struct FileSummary {
    pub lines_count: usize,
    pub lines_covered: usize,
    pub branches_count: usize,
    pub branches_executed: usize,
    pub branches_taken: usize,
    pub functions_count: usize,
    pub functions_called: usize,
}

Statistical summary of a file.

Fields

Number of lines that can be profiled.

Number of lines that has been covered.

Number of conditional branches in functions defined in this file.

Number of conditional basic blocks that has been executed.

Number of branches that has been taken.

Number of functions defined in this file.

Number of functions that has been called.

Trait Implementations

impl Copy for FileSummary
[src]

impl Clone for FileSummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FileSummary
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for FileSummary
[src]

impl Hash for FileSummary
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for FileSummary
[src]

[src]

Formats the value using the given formatter.

impl Default for FileSummary
[src]

[src]

Returns the "default value" for a type. Read more

impl SerializeWithInterner for FileSummary
[src]

[src]

Serializes this value with help from an [Interner] that writes [Symbol]s as strings. Read more

[src]

Adorns this object with a string interner. Read more