Struct cdp::debugger::SetBlackboxedRangesCommand
[−]
[src]
pub struct SetBlackboxedRangesCommand<'a> { pub script_id: ScriptId<'a>, pub positions: Vec<ScriptPosition>, }
[Experimental] Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.
Command Debugger.setBlackboxedRanges
Domain Module: cdp::debugger
Command Struct: cdp::debugger::SetBlackboxedRangesCommand
Response Struct: cdp::debugger::SetBlackboxedRangesResponse
Fields
script_id: ScriptId<'a>
Id of the script.
positions: Vec<ScriptPosition>
Trait Implementations
impl<'a> Clone for SetBlackboxedRangesCommand<'a>
[src]
fn clone(&self) -> SetBlackboxedRangesCommand<'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 SetBlackboxedRangesCommand<'a>
[src]
impl<'a> PartialEq for SetBlackboxedRangesCommand<'a>
[src]
fn eq(&self, __arg_0: &SetBlackboxedRangesCommand<'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: &SetBlackboxedRangesCommand<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for SetBlackboxedRangesCommand<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.setBlackboxedRanges"
impl<'a> SerializeCdpCommand for SetBlackboxedRangesCommand<'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 SetBlackboxedRangesCommand<'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>,