Struct cdp::debugger::SetBlackboxPatternsCommand [] [src]

pub struct SetBlackboxPatternsCommand<'a> {
    pub patterns: Vec<Cow<'a, str>>,
}

[Experimental] Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.

Command Debugger.setBlackboxPatterns

Domain Module: cdp::debugger
Command Struct: cdp::debugger::SetBlackboxPatternsCommand
Response Struct: cdp::debugger::SetBlackboxPatternsResponse

Fields

Array of regexps that will be used to check script url for blackbox state.

Trait Implementations

impl<'a> Clone for SetBlackboxPatternsCommand<'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 SetBlackboxPatternsCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for SetBlackboxPatternsCommand<'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 SetBlackboxPatternsCommand<'a>
[src]

COMMAND_NAME: &'static str = "Debugger.setBlackboxPatterns"

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

[src]

[src]

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

[src]

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