pub struct StopTrackingHeapObjectsParams {
pub report_progress: Option<bool>,
pub capture_numeric_value: Option<bool>,
pub expose_internals: Option<bool>,
}Fields§
§report_progress: Option<bool>If true ‘reportHeapSnapshotProgress’ events will be generated while snapshot is being taken when the tracking is stopped.
capture_numeric_value: Option<bool>If true, numerical values are included in the snapshot
expose_internals: Option<bool>If true, exposes internals of the snapshot.
Implementations§
source§impl StopTrackingHeapObjectsParams
impl StopTrackingHeapObjectsParams
pub fn builder() -> StopTrackingHeapObjectsParamsBuilder
source§impl StopTrackingHeapObjectsParams
impl StopTrackingHeapObjectsParams
pub const IDENTIFIER: &'static str = "HeapProfiler.stopTrackingHeapObjects"
Trait Implementations§
source§impl Clone for StopTrackingHeapObjectsParams
impl Clone for StopTrackingHeapObjectsParams
source§fn clone(&self) -> StopTrackingHeapObjectsParams
fn clone(&self) -> StopTrackingHeapObjectsParams
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 StopTrackingHeapObjectsParams
impl Command for StopTrackingHeapObjectsParams
§type Response = StopTrackingHeapObjectsReturns
type Response = StopTrackingHeapObjectsReturns
The type of the response this request triggers on the chromium server
source§impl Default for StopTrackingHeapObjectsParams
impl Default for StopTrackingHeapObjectsParams
source§fn default() -> StopTrackingHeapObjectsParams
fn default() -> StopTrackingHeapObjectsParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StopTrackingHeapObjectsParams
impl<'de> Deserialize<'de> for StopTrackingHeapObjectsParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<StopTrackingHeapObjectsParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<StopTrackingHeapObjectsParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for StopTrackingHeapObjectsParams
impl Method for StopTrackingHeapObjectsParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
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 PartialEq<StopTrackingHeapObjectsParams> for StopTrackingHeapObjectsParams
impl PartialEq<StopTrackingHeapObjectsParams> for StopTrackingHeapObjectsParams
source§fn eq(&self, other: &StopTrackingHeapObjectsParams) -> bool
fn eq(&self, other: &StopTrackingHeapObjectsParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for StopTrackingHeapObjectsParams
impl Serialize for StopTrackingHeapObjectsParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more