pub struct StepInto {
pub method: StepIntoMethod,
pub params: StepIntoParams,
}Expand description
Steps into the function call. stepInto
Fields§
§method: StepIntoMethod§params: StepIntoParamsImplementations§
Source§impl StepInto
impl StepInto
pub const IDENTIFIER: &'static str = "Debugger.stepInto"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for StepInto
impl CommandResult for StepInto
type Result = StepIntoResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for StepInto
impl<'de> Deserialize<'de> for StepInto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<StepInto> for DebuggerCommands
impl From<StepInto> for DebuggerCommands
Source§impl From<StepInto> for JsProtocolCommands
impl From<StepInto> for JsProtocolCommands
Source§impl TryFrom<DebuggerCommands> for StepInto
impl TryFrom<DebuggerCommands> for StepInto
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <StepInto as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <StepInto as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for StepInto
impl TryFrom<JsProtocolCommands> for StepInto
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <StepInto as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <StepInto as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StepInto
Auto Trait Implementations§
impl Freeze for StepInto
impl RefUnwindSafe for StepInto
impl Send for StepInto
impl Sync for StepInto
impl Unpin for StepInto
impl UnsafeUnpin for StepInto
impl UnwindSafe for StepInto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more