pub struct RunIfWaitingForDebugger {
pub method: RunIfWaitingForDebuggerMethod,
pub params: RunIfWaitingForDebuggerParams,
}Expand description
Tells inspected instance to run if it was waiting for debugger to attach. runIfWaitingForDebugger
Fields§
§method: RunIfWaitingForDebuggerMethod§params: RunIfWaitingForDebuggerParamsImplementations§
Source§impl RunIfWaitingForDebugger
impl RunIfWaitingForDebugger
pub const IDENTIFIER: &'static str = "Runtime.runIfWaitingForDebugger"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RunIfWaitingForDebugger
impl Clone for RunIfWaitingForDebugger
Source§fn clone(&self) -> RunIfWaitingForDebugger
fn clone(&self) -> RunIfWaitingForDebugger
Returns a duplicate 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 CommandResult for RunIfWaitingForDebugger
impl CommandResult for RunIfWaitingForDebugger
type Result = RunIfWaitingForDebuggerResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RunIfWaitingForDebugger
impl Debug for RunIfWaitingForDebugger
Source§impl<'de> Deserialize<'de> for RunIfWaitingForDebugger
impl<'de> Deserialize<'de> for RunIfWaitingForDebugger
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<RunIfWaitingForDebugger> for Command
impl From<RunIfWaitingForDebugger> for Command
Source§fn from(v: RunIfWaitingForDebugger) -> Self
fn from(v: RunIfWaitingForDebugger) -> Self
Converts to this type from the input type.
Source§impl From<RunIfWaitingForDebugger> for JsProtocolCommands
impl From<RunIfWaitingForDebugger> for JsProtocolCommands
Source§fn from(v: RunIfWaitingForDebugger) -> Self
fn from(v: RunIfWaitingForDebugger) -> Self
Converts to this type from the input type.
Source§impl From<RunIfWaitingForDebugger> for RuntimeCommands
impl From<RunIfWaitingForDebugger> for RuntimeCommands
Source§fn from(v: RunIfWaitingForDebugger) -> Self
fn from(v: RunIfWaitingForDebugger) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RunIfWaitingForDebugger
impl PartialEq for RunIfWaitingForDebugger
Source§impl Serialize for RunIfWaitingForDebugger
impl Serialize for RunIfWaitingForDebugger
Source§impl TryFrom<Command> for RunIfWaitingForDebugger
impl TryFrom<Command> for RunIfWaitingForDebugger
Source§impl TryFrom<JsProtocolCommands> for RunIfWaitingForDebugger
impl TryFrom<JsProtocolCommands> for RunIfWaitingForDebugger
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, <RunIfWaitingForDebugger as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <RunIfWaitingForDebugger as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for RunIfWaitingForDebugger
impl TryFrom<RuntimeCommands> for RunIfWaitingForDebugger
Source§type Error = RuntimeCommands
type Error = RuntimeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeCommands,
) -> Result<Self, <RunIfWaitingForDebugger as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <RunIfWaitingForDebugger as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RunIfWaitingForDebugger
Auto Trait Implementations§
impl Freeze for RunIfWaitingForDebugger
impl RefUnwindSafe for RunIfWaitingForDebugger
impl Send for RunIfWaitingForDebugger
impl Sync for RunIfWaitingForDebugger
impl Unpin for RunIfWaitingForDebugger
impl UnsafeUnpin for RunIfWaitingForDebugger
impl UnwindSafe for RunIfWaitingForDebugger
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