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<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 StopTrackingHeapObjectsParams
impl Method for StopTrackingHeapObjectsParams
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 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 ==.impl StructuralPartialEq for StopTrackingHeapObjectsParams
Auto Trait Implementations§
impl RefUnwindSafe for StopTrackingHeapObjectsParams
impl Send for StopTrackingHeapObjectsParams
impl Sync for StopTrackingHeapObjectsParams
impl Unpin for StopTrackingHeapObjectsParams
impl UnwindSafe for StopTrackingHeapObjectsParams
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