Struct cdp::debugger::SetBreakpointByUrlCommand
[−]
[src]
pub struct SetBreakpointByUrlCommand<'a> { pub line_number: i32, pub url: Option<Cow<'a, str>>, pub url_regex: Option<Cow<'a, str>>, pub column_number: Option<i32>, pub condition: Option<Cow<'a, str>>, }
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
line_number: i32
Line number to set breakpoint at.
url: Option<Cow<'a, str>>
URL of the resources to set breakpoint on.
url_regex: Option<Cow<'a, str>>
Regex pattern for the URLs of the resources to set breakpoints on. Either url
or urlRegex
must be specified.
column_number: Option<i32>
Offset in the line to set breakpoint at.
condition: Option<Cow<'a, str>>
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
Trait Implementations
impl<'a> Clone for SetBreakpointByUrlCommand<'a>
[src]
fn clone(&self) -> SetBreakpointByUrlCommand<'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 SetBreakpointByUrlCommand<'a>
[src]
impl<'a> PartialEq for SetBreakpointByUrlCommand<'a>
[src]
fn eq(&self, __arg_0: &SetBreakpointByUrlCommand<'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: &SetBreakpointByUrlCommand<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for SetBreakpointByUrlCommand<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.setBreakpointByUrl"
impl<'a> SerializeCdpCommand for SetBreakpointByUrlCommand<'a>
[src]
fn command_name(&self) -> &str
[src]
fn serialize_command_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
impl<'de, 'a> DeserializeCdpCommand<'de> for SetBreakpointByUrlCommand<'a>
[src]
fn deserialize_command<D>(
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,
[src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,