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

Id of the created breakpoint for further reference.

Location this breakpoint resolved into.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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