Struct cdp::debugger::SetBreakpointResponse
[−]
[src]
pub struct SetBreakpointResponse<'a> { pub breakpoint_id: BreakpointId<'a>, pub actual_location: Location<'a>, }
Sets JavaScript breakpoint at a given location.
Command Debugger.setBreakpoint
Domain Module: cdp::debugger
Command Struct: cdp::debugger::SetBreakpointCommand
Response Struct: cdp::debugger::SetBreakpointResponse
Fields
breakpoint_id: BreakpointId<'a>
Id of the created breakpoint for further reference.
actual_location: Location<'a>
Location this breakpoint resolved into.
Trait Implementations
impl<'a> Clone for SetBreakpointResponse<'a>
[src]
fn clone(&self) -> SetBreakpointResponse<'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 SetBreakpointResponse<'a>
[src]
impl<'a> PartialEq for SetBreakpointResponse<'a>
[src]
fn eq(&self, __arg_0: &SetBreakpointResponse<'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: &SetBreakpointResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for SetBreakpointResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.setBreakpoint"