Struct cov::raw::Lines[][src]

pub struct Lines {
    pub block_number: BlockIndex,
    pub lines: Vec<Line>,
}

Information about source lines covered by a basic block.

Fields

The basic block which contains these source information.

The line numebers. The vector typically starts with a FileName, followed by many LineNumbers.

Trait Implementations

impl Clone for Lines
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Lines
[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 Lines
[src]

impl Hash for Lines
[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 Lines
[src]

Formats the value using the given formatter. Read more

impl SerializeWithInterner for Lines
[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 Lines

impl Sync for Lines