Enum cov::raw::Record[][src]

pub enum Record {
    Function(IdentFunction),
    Blocks(Blocks),
    Arcs(Arcs),
    Lines(Lines),
    ArcCounts(ArcCounts),
    Summary(Summary),
}

A record in a gcov file.

Variants

An ANNOUNCE_FUNCTION record in GCNO and GCDA formats.

A BASIC_BLOCK record in GCNO format.

An ARCS record in GCNO format.

A LINES record in GCNO format.

A COUNTS record in GCDA format.

A SUMMARY record in GCDA format.

Trait Implementations

impl Clone for Record
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

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

impl Sync for Record