Struct cov::raw::Function[][src]

pub struct Function {
    pub lineno_checksum: u32,
    pub cfg_checksum: u32,
    pub source: Option<Source>,
}

Information of a function.

Fields

The line-number checksum of this function.

The configuration checksum of this function. On versions before 4.7, this value is always 0.

The source location of this function. This field is None in a GCDA.

Trait Implementations

impl Copy for Function
[src]

impl Clone for Function
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

impl Default for Function
[src]

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

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

impl Sync for Function