Struct chromiumoxide::cdp::js_protocol::profiler::TakePreciseCoverageReturns[][src]

pub struct TakePreciseCoverageReturns {
    pub result: Vec<ScriptCoverage, Global>,
    pub timestamp: f64,
}

Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started. takePreciseCoverage

Fields

result: Vec<ScriptCoverage, Global>

Coverage data for the current isolate.

timestamp: f64

Monotonically increasing time (in seconds) when the coverage update was taken in the backend.

Implementations

impl TakePreciseCoverageReturns[src]

pub fn new(
    result: Vec<ScriptCoverage, Global>,
    timestamp: impl Into<f64>
) -> TakePreciseCoverageReturns
[src]

impl TakePreciseCoverageReturns[src]

Trait Implementations

impl Clone for TakePreciseCoverageReturns[src]

impl Debug for TakePreciseCoverageReturns[src]

impl<'de> Deserialize<'de> for TakePreciseCoverageReturns[src]

impl PartialEq<TakePreciseCoverageReturns> for TakePreciseCoverageReturns[src]

impl Serialize for TakePreciseCoverageReturns[src]

impl StructuralPartialEq for TakePreciseCoverageReturns[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,