Struct chromiumoxide_cdp::cdp::browser_protocol::browser::GetHistogramParams    
source · pub struct GetHistogramParams {
    pub name: String,
    pub delta: Option<bool>,
}Expand description
Get a Chrome histogram by name. getHistogram
Fields§
§name: StringRequested histogram name.
delta: Option<bool>If true, retrieve delta since last call.
Implementations§
source§impl GetHistogramParams
 
impl GetHistogramParams
pub fn builder() -> GetHistogramParamsBuilder
source§impl GetHistogramParams
 
impl GetHistogramParams
pub const IDENTIFIER: &'static str = "Browser.getHistogram"
Trait Implementations§
source§impl Clone for GetHistogramParams
 
impl Clone for GetHistogramParams
source§fn clone(&self) -> GetHistogramParams
 
fn clone(&self) -> GetHistogramParams
Returns a copy 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 Command for GetHistogramParams
 
impl Command for GetHistogramParams
§type Response = GetHistogramReturns
 
type Response = GetHistogramReturns
The type of the response this request triggers on the chromium server
source§impl Debug for GetHistogramParams
 
impl Debug for GetHistogramParams
source§impl<'de> Deserialize<'de> for GetHistogramParams
 
impl<'de> Deserialize<'de> for GetHistogramParams
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 Method for GetHistogramParams
 
impl Method for GetHistogramParams
source§fn identifier(&self) -> MethodId
 
fn identifier(&self) -> MethodId
The whole string identifier for this method like: 
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
 
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to: 
DOMsource§fn method_name(&self) -> Cow<'static, str>
 
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain: 
removeNodesource§impl MethodType for GetHistogramParams
 
impl MethodType for GetHistogramParams
source§impl PartialEq<GetHistogramParams> for GetHistogramParams
 
impl PartialEq<GetHistogramParams> for GetHistogramParams
source§fn eq(&self, other: &GetHistogramParams) -> bool
 
fn eq(&self, other: &GetHistogramParams) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for GetHistogramParams
 
impl Serialize for GetHistogramParams
impl StructuralPartialEq for GetHistogramParams
Auto Trait Implementations§
impl RefUnwindSafe for GetHistogramParams
impl Send for GetHistogramParams
impl Sync for GetHistogramParams
impl Unpin for GetHistogramParams
impl UnwindSafe for GetHistogramParams
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