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
locations: Vec<BreakLocation<'a>>
List of the possible breakpoint locations.
Trait Implementations
impl<'a> Clone for GetPossibleBreakpointsResponse<'a>
[src]
fn clone(&self) -> GetPossibleBreakpointsResponse<'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 GetPossibleBreakpointsResponse<'a>
[src]
impl<'a> PartialEq for GetPossibleBreakpointsResponse<'a>
[src]
fn eq(&self, __arg_0: &GetPossibleBreakpointsResponse<'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: &GetPossibleBreakpointsResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetPossibleBreakpointsResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.getPossibleBreakpoints"