pub struct StartPreciseCoverageParams {
pub call_count: Option<bool>,
pub detailed: Option<bool>,
pub allow_triggered_updates: Option<bool>,
}Expand description
Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters. startPreciseCoverage
Fields§
§call_count: Option<bool>Collect accurate call counts beyond simple ‘covered’ or ‘not covered’.
detailed: Option<bool>Collect block-based coverage.
allow_triggered_updates: Option<bool>Allow the backend to send updates on its own initiative
Trait Implementations§
Source§impl Clone for StartPreciseCoverageParams
impl Clone for StartPreciseCoverageParams
Source§fn clone(&self) -> StartPreciseCoverageParams
fn clone(&self) -> StartPreciseCoverageParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StartPreciseCoverageParams
impl Debug for StartPreciseCoverageParams
Source§impl Default for StartPreciseCoverageParams
impl Default for StartPreciseCoverageParams
Source§fn default() -> StartPreciseCoverageParams
fn default() -> StartPreciseCoverageParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartPreciseCoverageParams
impl<'de> Deserialize<'de> for StartPreciseCoverageParams
Source§fn 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
impl StructuralPartialEq for StartPreciseCoverageParams
Auto Trait Implementations§
impl Freeze for StartPreciseCoverageParams
impl RefUnwindSafe for StartPreciseCoverageParams
impl Send for StartPreciseCoverageParams
impl Sync for StartPreciseCoverageParams
impl Unpin for StartPreciseCoverageParams
impl UnsafeUnpin for StartPreciseCoverageParams
impl UnwindSafe for StartPreciseCoverageParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more