pub struct StepOut {
pub method: StepOutMethod,
pub params: StepOutParams,
}Expand description
Steps out of the function call. stepOut
Fields§
§method: StepOutMethod§params: StepOutParamsImplementations§
Source§impl StepOut
impl StepOut
pub const IDENTIFIER: &'static str = "Debugger.stepOut"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for StepOut
impl CommandResult for StepOut
type Result = StepOutResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for StepOut
impl<'de> Deserialize<'de> for StepOut
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<StepOut> for DebuggerCommands
impl From<StepOut> for DebuggerCommands
Source§impl From<StepOut> for JsProtocolCommands
impl From<StepOut> for JsProtocolCommands
Source§impl TryFrom<DebuggerCommands> for StepOut
impl TryFrom<DebuggerCommands> for StepOut
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, <StepOut as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <StepOut as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for StepOut
impl TryFrom<JsProtocolCommands> for StepOut
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, <StepOut as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <StepOut as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StepOut
Auto Trait Implementations§
impl Freeze for StepOut
impl RefUnwindSafe for StepOut
impl Send for StepOut
impl Sync for StepOut
impl Unpin for StepOut
impl UnsafeUnpin for StepOut
impl UnwindSafe for StepOut
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