Enum cov::raw::Line[][src]

pub enum Line {
    LineNumber(u32),
    FileName(Symbol),
}

A source line entry of a basic block.

Variants

A line number inside the basic block.

The file name containing the basic block.

Trait Implementations

impl Copy for Line
[src]

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 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