pub struct Paused {
pub method: PausedMethod,
pub params: PausedParams,
}Expand description
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. paused
Fields§
§method: PausedMethod§params: PausedParamsImplementations§
Source§impl Paused
impl Paused
pub const IDENTIFIER: &'static str = "Debugger.paused"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Paused
impl<'de> Deserialize<'de> for Paused
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<Paused> for DebuggerEvents
impl From<Paused> for DebuggerEvents
Source§impl From<Paused> for JsProtocolEvents
impl From<Paused> for JsProtocolEvents
Source§impl TryFrom<DebuggerEvents> for Paused
impl TryFrom<DebuggerEvents> for Paused
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, <Paused as TryFrom<DebuggerEvents>>::Error>
fn try_from( e: DebuggerEvents, ) -> Result<Self, <Paused as TryFrom<DebuggerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolEvents> for Paused
impl TryFrom<JsProtocolEvents> for Paused
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, <Paused as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <Paused as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for Paused
Auto Trait Implementations§
impl Freeze for Paused
impl RefUnwindSafe for Paused
impl Send for Paused
impl Sync for Paused
impl Unpin for Paused
impl UnsafeUnpin for Paused
impl UnwindSafe for Paused
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