Struct chromiumoxide::cdp::js_protocol::debugger::StepOverParams
source · pub struct StepOverParams {
pub skip_list: Option<Vec<LocationRange, Global>>,
}Expand description
Steps over the statement. stepOver
Fields§
§skip_list: Option<Vec<LocationRange, Global>>The skipList specifies location ranges that should be skipped on step over.
Implementations§
source§impl StepOverParams
impl StepOverParams
pub fn builder() -> StepOverParamsBuilder
source§impl StepOverParams
impl StepOverParams
pub const IDENTIFIER: &'static str = "Debugger.stepOver"
Trait Implementations§
source§impl Clone for StepOverParams
impl Clone for StepOverParams
source§fn clone(&self) -> StepOverParams
fn clone(&self) -> StepOverParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Command for StepOverParams
impl Command for StepOverParams
§type Response = StepOverReturns
type Response = StepOverReturns
The type of the response this request triggers on the chromium server
source§impl Debug for StepOverParams
impl Debug for StepOverParams
source§impl Default for StepOverParams
impl Default for StepOverParams
source§fn default() -> StepOverParams
fn default() -> StepOverParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StepOverParams
impl<'de> Deserialize<'de> for StepOverParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<StepOverParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<StepOverParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for StepOverParams
impl Method for StepOverParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl MethodType for StepOverParams
impl MethodType for StepOverParams
source§impl PartialEq<StepOverParams> for StepOverParams
impl PartialEq<StepOverParams> for StepOverParams
source§fn eq(&self, other: &StepOverParams) -> bool
fn eq(&self, other: &StepOverParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for StepOverParams
impl Serialize for StepOverParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more