pub struct StartPreciseCoverageReturnObject {
pub timestamp: JsFloat,
}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.
Fields§
§timestamp: JsFloatMonotonically increasing time (in seconds) when the coverage update was taken in the backend.
Trait Implementations§
Source§impl Clone for StartPreciseCoverageReturnObject
impl Clone for StartPreciseCoverageReturnObject
Source§fn clone(&self) -> StartPreciseCoverageReturnObject
fn clone(&self) -> StartPreciseCoverageReturnObject
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<'de> Deserialize<'de> for StartPreciseCoverageReturnObject
impl<'de> Deserialize<'de> for StartPreciseCoverageReturnObject
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
Source§impl PartialEq for StartPreciseCoverageReturnObject
impl PartialEq for StartPreciseCoverageReturnObject
Source§fn eq(&self, other: &StartPreciseCoverageReturnObject) -> bool
fn eq(&self, other: &StartPreciseCoverageReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartPreciseCoverageReturnObject
Auto Trait Implementations§
impl Freeze for StartPreciseCoverageReturnObject
impl RefUnwindSafe for StartPreciseCoverageReturnObject
impl Send for StartPreciseCoverageReturnObject
impl Sync for StartPreciseCoverageReturnObject
impl Unpin for StartPreciseCoverageReturnObject
impl UnsafeUnpin for StartPreciseCoverageReturnObject
impl UnwindSafe for StartPreciseCoverageReturnObject
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