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
breakpoint_id: BreakpointId<'a>
Id of the created breakpoint for further reference.
locations: Vec<Location<'a>>
List of the locations this breakpoint resolved into upon addition.
Trait Implementations
impl<'a> Clone for SetBreakpointByUrlResponse<'a>
[src]
fn clone(&self) -> SetBreakpointByUrlResponse<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for SetBreakpointByUrlResponse<'a>
[src]
impl<'a> PartialEq for SetBreakpointByUrlResponse<'a>
[src]
fn eq(&self, __arg_0: &SetBreakpointByUrlResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SetBreakpointByUrlResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for SetBreakpointByUrlResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.setBreakpointByUrl"