Struct cdp::profiler::FunctionCoverage [] [src]

pub struct FunctionCoverage<'a> {
    pub function_name: Cow<'a, str>,
    pub ranges: Vec<CoverageRange>,
    pub is_block_coverage: bool,
}

[Experimental] Coverage data for a JavaScript function.

Fields

JavaScript function name.

Source ranges inside the function with coverage data.

Whether coverage data for this function has block granularity.

Trait Implementations

impl<'a> Clone for FunctionCoverage<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for FunctionCoverage<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for FunctionCoverage<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.