Struct cov::raw::Summary[][src]

pub struct Summary {
    pub checksum: u32,
    pub num: u32,
    pub runs: u32,
    pub sum: u64,
    pub max: u64,
    pub sum_max: u64,
    pub histogram: Option<Histogram>,
}

Object summary.

Fields

Checksum of the object.

Number of counters.

Number of program runs.

Sum of all counters accumulated.

Maximum count of a single run.

Sum of individual maximum counts.

Histogram of counter values.

Trait Implementations

impl Clone for Summary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

impl Default for Summary
[src]

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

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

impl Sync for Summary