pub struct StartPreciseCoverageParams { /* private fields */ }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.
Implementations§
Source§impl StartPreciseCoverageParams
impl StartPreciseCoverageParams
Sourcepub fn builder() -> StartPreciseCoverageParamsBuilder
pub fn builder() -> StartPreciseCoverageParamsBuilder
Creates a builder for this type.
Sourcepub fn call_count(&self) -> Option<bool>
pub fn call_count(&self) -> Option<bool>
Collect accurate call counts beyond simple ‘covered’ or ‘not covered’.
Sourcepub fn allow_triggered_updates(&self) -> Option<bool>
pub fn allow_triggered_updates(&self) -> Option<bool>
Allow the backend to send updates on its own initiative
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for StartPreciseCoverageParams
impl<'a> CdpCommand<'a> for StartPreciseCoverageParams
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 (const: unstable) · 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
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