Struct cdp::debugger::GetPossibleBreakpointsResponse [] [src]

pub struct GetPossibleBreakpointsResponse<'a> {
    pub locations: Vec<BreakLocation<'a>>,
}

[Experimental] Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

Command Debugger.getPossibleBreakpoints

Domain Module: cdp::debugger
Command Struct: cdp::debugger::GetPossibleBreakpointsCommand
Response Struct: cdp::debugger::GetPossibleBreakpointsResponse

Fields

List of the possible breakpoint locations.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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