Struct cdp::debugger::SetBreakpointByUrlResponse [] [src]

pub struct SetBreakpointByUrlResponse<'a> {
    pub breakpoint_id: BreakpointId<'a>,
    pub locations: Vec<Location<'a>>,
}

Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads.

Command Debugger.setBreakpointByUrl

Domain Module: cdp::debugger
Command Struct: cdp::debugger::SetBreakpointByUrlCommand
Response Struct: cdp::debugger::SetBreakpointByUrlResponse

Fields

Id of the created breakpoint for further reference.

List of the locations this breakpoint resolved into upon addition.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

impl<'a, 'b> HasCdpCommand<'a> for SetBreakpointByUrlResponse<'b>
[src]