pub struct Resumed {
pub method: ResumedMethod,
pub params: ResumedParams,
}Expand description
Fired when the virtual machine resumed execution. resumed
Fields§
§method: ResumedMethod§params: ResumedParamsImplementations§
Source§impl Resumed
impl Resumed
pub const IDENTIFIER: &'static str = "Debugger.resumed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Resumed
impl<'de> Deserialize<'de> for Resumed
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<Resumed> for DebuggerEvents
impl From<Resumed> for DebuggerEvents
Source§impl From<Resumed> for JsProtocolEvents
impl From<Resumed> for JsProtocolEvents
Source§impl TryFrom<DebuggerEvents> for Resumed
impl TryFrom<DebuggerEvents> for Resumed
Source§type Error = DebuggerEvents
type Error = DebuggerEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerEvents,
) -> Result<Self, <Resumed as TryFrom<DebuggerEvents>>::Error>
fn try_from( e: DebuggerEvents, ) -> Result<Self, <Resumed as TryFrom<DebuggerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolEvents> for Resumed
impl TryFrom<JsProtocolEvents> for Resumed
Source§type Error = JsProtocolEvents
type Error = JsProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolEvents,
) -> Result<Self, <Resumed as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <Resumed as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for Resumed
Auto Trait Implementations§
impl Freeze for Resumed
impl RefUnwindSafe for Resumed
impl Send for Resumed
impl Sync for Resumed
impl Unpin for Resumed
impl UnsafeUnpin for Resumed
impl UnwindSafe for Resumed
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