Struct chrome_remote_interface_model::browser::GetHistogramsCommand[][src]

pub struct GetHistogramsCommand { /* fields omitted */ }

Get Chrome histograms.

Implementations

impl GetHistogramsCommand[src]

pub fn new(query: Option<String>, delta: Option<bool>) -> Self[src]

pub fn query(&self) -> Option<&String>[src]

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.

pub fn delta(&self) -> Option<&bool>[src]

If true, retrieve delta since last call.

Trait Implementations

impl Clone for GetHistogramsCommand[src]

impl Command for GetHistogramsCommand[src]

type Return = GetHistogramsReturn

Return type.

impl Debug for GetHistogramsCommand[src]

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

impl Serialize for GetHistogramsCommand[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> 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.