pub struct StepOver {
pub method: StepOverMethod,
pub params: StepOverParams,
}Expand description
Steps over the statement. stepOver
Fields§
§method: StepOverMethod§params: StepOverParamsImplementations§
Source§impl StepOver
impl StepOver
pub const IDENTIFIER: &'static str = "Debugger.stepOver"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for StepOver
impl CommandResult for StepOver
type Result = StepOverResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for StepOver
impl<'de> Deserialize<'de> for StepOver
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<StepOver> for DebuggerCommands
impl From<StepOver> for DebuggerCommands
Source§impl From<StepOver> for JsProtocolCommands
impl From<StepOver> for JsProtocolCommands
Source§impl TryFrom<DebuggerCommands> for StepOver
impl TryFrom<DebuggerCommands> for StepOver
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, <StepOver as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <StepOver as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for StepOver
impl TryFrom<JsProtocolCommands> for StepOver
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, <StepOver as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <StepOver as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StepOver
Auto Trait Implementations§
impl Freeze for StepOver
impl RefUnwindSafe for StepOver
impl Send for StepOver
impl Sync for StepOver
impl Unpin for StepOver
impl UnsafeUnpin for StepOver
impl UnwindSafe for StepOver
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