Struct chrome_remote_interface_model::tracing::TraceConfig[][src]

pub struct TraceConfig { /* fields omitted */ }
This is supported on crate features experimental and Tracing and IO only.

Implementations

impl TraceConfig[src]

pub fn builder() -> TraceConfigBuilder[src]

pub fn record_mode(&self) -> Option<&TraceConfigRecordMode>[src]

Controls how the trace buffer stores data.

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

Turns on JavaScript stack sampling.

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

Turns on system tracing.

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

Turns on argument filter.

pub fn included_categories(&self) -> Option<&Vec<String>>[src]

Included category filters.

pub fn excluded_categories(&self) -> Option<&Vec<String>>[src]

Excluded category filters.

pub fn synthetic_delays(&self) -> Option<&Vec<String>>[src]

Configuration to synthesize the delays in tracing.

pub fn memory_dump_config(&self) -> Option<&MemoryDumpConfig>[src]

Configuration for memory dump triggers. Used only when "memory-infra" category is enabled.

Trait Implementations

impl Clone for TraceConfig[src]

impl Debug for TraceConfig[src]

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

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