Struct cov::report::Function[][src]

pub struct Function {
    pub name: Symbol,
    pub line: u32,
    pub column: u32,
    pub summary: FunctionSummary,
}

Coverage information about a function.

Fields

Name of the function.

The line number where this function is defined. Zero if missing.

The column number where this function is defined. Zero if missing.

Summary about this function.

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