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: Location<'a>
Start of range to search possible breakpoint locations in.
end: Option<Location<'a>>
End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.
restrict_to_function: Option<bool>
Only consider locations which are in the same (non-nested) function as start.
Trait Implementations
impl<'a> Clone for GetPossibleBreakpointsCommand<'a>
[src]
fn clone(&self) -> GetPossibleBreakpointsCommand<'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 GetPossibleBreakpointsCommand<'a>
[src]
impl<'a> PartialEq for GetPossibleBreakpointsCommand<'a>
[src]
fn eq(&self, __arg_0: &GetPossibleBreakpointsCommand<'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: &GetPossibleBreakpointsCommand<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetPossibleBreakpointsCommand<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.getPossibleBreakpoints"
impl<'a> SerializeCdpCommand for GetPossibleBreakpointsCommand<'a>
[src]
fn command_name(&self) -> &str
[src]
fn serialize_command_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
impl<'de, 'a> DeserializeCdpCommand<'de> for GetPossibleBreakpointsCommand<'a>
[src]
fn deserialize_command<D>(
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,
[src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,