pub struct GetHistogram {
pub method: GetHistogramMethod,
pub params: GetHistogramParams,
}Expand description
Get a Chrome histogram by name. getHistogram
Fields§
§method: GetHistogramMethod§params: GetHistogramParamsImplementations§
Source§impl GetHistogram
impl GetHistogram
pub fn builder() -> GetHistogramBuilder
Source§impl GetHistogram
impl GetHistogram
pub const IDENTIFIER: &'static str = "Browser.getHistogram"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetHistogram
impl Clone for GetHistogram
Source§fn clone(&self) -> GetHistogram
fn clone(&self) -> GetHistogram
Returns a duplicate 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 CommandResult for GetHistogram
impl CommandResult for GetHistogram
type Result = GetHistogramResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetHistogram
impl Debug for GetHistogram
Source§impl<'de> Deserialize<'de> for GetHistogram
impl<'de> Deserialize<'de> for GetHistogram
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 From<GetHistogram> for BrowserCommands
impl From<GetHistogram> for BrowserCommands
Source§fn from(v: GetHistogram) -> Self
fn from(v: GetHistogram) -> Self
Converts to this type from the input type.
Source§impl From<GetHistogram> for BrowserProtocolCommands
impl From<GetHistogram> for BrowserProtocolCommands
Source§fn from(v: GetHistogram) -> Self
fn from(v: GetHistogram) -> Self
Converts to this type from the input type.
Source§impl From<GetHistogram> for Command
impl From<GetHistogram> for Command
Source§fn from(v: GetHistogram) -> Self
fn from(v: GetHistogram) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetHistogram
impl PartialEq for GetHistogram
Source§impl Serialize for GetHistogram
impl Serialize for GetHistogram
Source§impl TryFrom<BrowserCommands> for GetHistogram
impl TryFrom<BrowserCommands> for GetHistogram
Source§type Error = BrowserCommands
type Error = BrowserCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserCommands,
) -> Result<Self, <GetHistogram as TryFrom<BrowserCommands>>::Error>
fn try_from( e: BrowserCommands, ) -> Result<Self, <GetHistogram as TryFrom<BrowserCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for GetHistogram
impl TryFrom<BrowserProtocolCommands> for GetHistogram
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetHistogram as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetHistogram as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetHistogram
impl TryFrom<Command> for GetHistogram
impl StructuralPartialEq for GetHistogram
Auto Trait Implementations§
impl Freeze for GetHistogram
impl RefUnwindSafe for GetHistogram
impl Send for GetHistogram
impl Sync for GetHistogram
impl Unpin for GetHistogram
impl UnsafeUnpin for GetHistogram
impl UnwindSafe for GetHistogram
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