Struct cov::report::Line[][src]

pub struct Line {
    pub count: u64,
    pub attr: BlockAttr,
    pub branches: Vec<Branch>,
}

Coverage information about a source line of code.

Fields

Number of times this line is executed.

This is the number of times all branches targeting the basic block containing this line has been taken.

Attributes associated with this line.

List of branches this line will lead to.

Trait Implementations

impl Clone for Line
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Line
[src]

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

This method tests for !=.

impl Eq for Line
[src]

impl Hash for Line
[src]

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

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

impl Debug for Line
[src]

Formats the value using the given formatter. Read more

impl Default for Line
[src]

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

impl SerializeWithInterner for Line
[src]

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

Adorns this object with a string interner. Read more

Auto Trait Implementations

impl Send for Line

impl Sync for Line