Struct cov::raw::ArcCounts[][src]

pub struct ArcCounts {
    pub counts: Vec<u64>,
}

Counter of how many times an arc is taken. Only arcs without the ArcAttr::ON_TREE flag will be recorded.

Fields

How many times an arc is taken. The vector lists the counts for each arc.

Trait Implementations

impl Clone for ArcCounts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

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

impl Sync for ArcCounts