pub struct Resume {
pub method: ResumeMethod,
pub params: ResumeParams,
}Expand description
Resumes JavaScript execution. resume
Fields§
§method: ResumeMethod§params: ResumeParamsImplementations§
Source§impl Resume
impl Resume
pub const IDENTIFIER: &'static str = "Debugger.resume"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for Resume
impl CommandResult for Resume
type Result = ResumeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for Resume
impl<'de> Deserialize<'de> for Resume
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<Resume> for DebuggerCommands
impl From<Resume> for DebuggerCommands
Source§impl From<Resume> for JsProtocolCommands
impl From<Resume> for JsProtocolCommands
Source§impl TryFrom<DebuggerCommands> for Resume
impl TryFrom<DebuggerCommands> for Resume
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, <Resume as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <Resume as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for Resume
impl TryFrom<JsProtocolCommands> for Resume
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, <Resume as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <Resume as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for Resume
Auto Trait Implementations§
impl Freeze for Resume
impl RefUnwindSafe for Resume
impl Send for Resume
impl Sync for Resume
impl Unpin for Resume
impl UnsafeUnpin for Resume
impl UnwindSafe for Resume
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