Struct chromiumoxide::cdp::browser_protocol::browser::GetHistogramsParams[][src]

pub struct GetHistogramsParams {
    pub query: Option<String>,
    pub delta: Option<bool>,
}

Get Chrome histograms. getHistograms

Fields

query: Option<String>

Requested substring in name. Only histograms which have query as a substring in their name are extracted. An empty or absent query returns all histograms.

delta: Option<bool>

If true, retrieve delta since last call.

Implementations

impl GetHistogramsParams[src]

impl GetHistogramsParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for GetHistogramsParams[src]

impl Command for GetHistogramsParams[src]

type Response = GetHistogramsReturns

The type of the response this request triggers on the chromium server

impl Debug for GetHistogramsParams[src]

impl Default for GetHistogramsParams[src]

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

impl Method for GetHistogramsParams[src]

impl MethodType for GetHistogramsParams[src]

impl PartialEq<GetHistogramsParams> for GetHistogramsParams[src]

impl Serialize for GetHistogramsParams[src]

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