Struct chrome_remote_interface_model::heap_profiler::StopTrackingHeapObjectsCommand[][src]

pub struct StopTrackingHeapObjectsCommand { /* fields omitted */ }
This is supported on crate features experimental and HeapProfiler and Runtime only.

Implementations

impl StopTrackingHeapObjectsCommand[src]

pub fn new(
    report_progress: Option<bool>,
    treat_global_objects_as_roots: Option<bool>
) -> Self
[src]

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

If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped.

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

Trait Implementations

impl Clone for StopTrackingHeapObjectsCommand[src]

impl Command for StopTrackingHeapObjectsCommand[src]

type Return = StopTrackingHeapObjectsReturn

Return type.

impl Debug for StopTrackingHeapObjectsCommand[src]

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

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