Struct chromiumoxide_cdp::cdp::js_protocol::profiler::FunctionCoverage
source · [−]pub struct FunctionCoverage {
pub function_name: String,
pub ranges: Vec<CoverageRange>,
pub is_block_coverage: bool,
}Expand description
Coverage data for a JavaScript function. FunctionCoverage
Fields
function_name: StringJavaScript function name.
ranges: Vec<CoverageRange>Source ranges inside the function with coverage data.
is_block_coverage: boolWhether coverage data for this function has block granularity.
Implementations
sourceimpl FunctionCoverage
impl FunctionCoverage
pub fn builder() -> FunctionCoverageBuilder
sourceimpl FunctionCoverage
impl FunctionCoverage
pub const IDENTIFIER: &'static str = "Profiler.FunctionCoverage"
Trait Implementations
sourceimpl Clone for FunctionCoverage
impl Clone for FunctionCoverage
sourcefn clone(&self) -> FunctionCoverage
fn clone(&self) -> FunctionCoverage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FunctionCoverage
impl Debug for FunctionCoverage
sourceimpl<'de> Deserialize<'de> for FunctionCoverage
impl<'de> Deserialize<'de> for FunctionCoverage
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<FunctionCoverage> for FunctionCoverage
impl PartialEq<FunctionCoverage> for FunctionCoverage
sourcefn eq(&self, other: &FunctionCoverage) -> bool
fn eq(&self, other: &FunctionCoverage) -> bool
sourceimpl Serialize for FunctionCoverage
impl Serialize for FunctionCoverage
impl StructuralPartialEq for FunctionCoverage
Auto Trait Implementations
impl RefUnwindSafe for FunctionCoverage
impl Send for FunctionCoverage
impl Sync for FunctionCoverage
impl Unpin for FunctionCoverage
impl UnwindSafe for FunctionCoverage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more