Struct cdp::debugger::GetPossibleBreakpointsCommand [] [src]

pub struct GetPossibleBreakpointsCommand<'a> {
    pub start: Location<'a>,
    pub end: Option<Location<'a>>,
    pub restrict_to_function: Option<bool>,
}

[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

Start of range to search possible breakpoint locations in.

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

Only consider locations which are in the same (non-nested) function as start.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

impl<'a> SerializeCdpCommand for GetPossibleBreakpointsCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for GetPossibleBreakpointsCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for GetPossibleBreakpointsCommand<'a>
[src]