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

pub struct RuntimeCallCounterInfo {
    pub name: String,
    pub value: f64,
    pub time: f64,
}

Runtime call counter information. RuntimeCallCounterInfo

Fields

name: String

Counter name.

value: f64

Counter value.

time: f64

Counter time in seconds.

Implementations

impl RuntimeCallCounterInfo[src]

pub fn new(
    name: impl Into<String>,
    value: impl Into<f64>,
    time: impl Into<f64>
) -> RuntimeCallCounterInfo
[src]

impl RuntimeCallCounterInfo[src]

impl RuntimeCallCounterInfo[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for RuntimeCallCounterInfo[src]

impl Debug for RuntimeCallCounterInfo[src]

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

impl PartialEq<RuntimeCallCounterInfo> for RuntimeCallCounterInfo[src]

impl Serialize for RuntimeCallCounterInfo[src]

impl StructuralPartialEq for RuntimeCallCounterInfo[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>,