Struct cdp::tracing::StartCommand [] [src]

pub struct StartCommand<'a> {
    pub categories: Option<Cow<'a, str>>,
    pub options: Option<Cow<'a, str>>,
    pub buffer_usage_reporting_interval: Option<f64>,
    pub transfer_mode: Option<StartCommandTransferMode>,
    pub trace_config: Option<TraceConfig<'a>>,
}

[Experimental] Start trace events collection.

Command Tracing.start

Domain Module: cdp::tracing
Command Struct: cdp::tracing::StartCommand
Response Struct: cdp::tracing::StartResponse

Fields

Deprecated

Category/tag filter

Deprecated

Tracing options

If set, the agent will issue bufferUsage events at this interval, specified in milliseconds

Whether to report trace events as series of dataCollected events or to save trace to a stream (defaults to ReportEvents).

Trait Implementations

impl<'a> Clone for StartCommand<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for StartCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for StartCommand<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for StartCommand<'a>
[src]

COMMAND_NAME: &'static str = "Tracing.start"

impl<'a> SerializeCdpCommand for StartCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for StartCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for StartCommand<'a>
[src]