pub struct SetPauseOnExceptions {
pub method: SetPauseOnExceptionsMethod,
pub params: SetPauseOnExceptionsParams,
}Expand description
Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions,
or caught exceptions, no exceptions. Initial pause on exceptions state is none.
setPauseOnExceptions
Fields§
§method: SetPauseOnExceptionsMethod§params: SetPauseOnExceptionsParamsImplementations§
Source§impl SetPauseOnExceptions
impl SetPauseOnExceptions
pub fn builder() -> SetPauseOnExceptionsBuilder
Source§impl SetPauseOnExceptions
impl SetPauseOnExceptions
pub const IDENTIFIER: &'static str = "Debugger.setPauseOnExceptions"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetPauseOnExceptions
impl Clone for SetPauseOnExceptions
Source§fn clone(&self) -> SetPauseOnExceptions
fn clone(&self) -> SetPauseOnExceptions
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 SetPauseOnExceptions
impl CommandResult for SetPauseOnExceptions
type Result = SetPauseOnExceptionsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetPauseOnExceptions
impl Debug for SetPauseOnExceptions
Source§impl<'de> Deserialize<'de> for SetPauseOnExceptions
impl<'de> Deserialize<'de> for SetPauseOnExceptions
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<SetPauseOnExceptions> for Command
impl From<SetPauseOnExceptions> for Command
Source§fn from(v: SetPauseOnExceptions) -> Self
fn from(v: SetPauseOnExceptions) -> Self
Converts to this type from the input type.
Source§impl From<SetPauseOnExceptions> for DebuggerCommands
impl From<SetPauseOnExceptions> for DebuggerCommands
Source§fn from(v: SetPauseOnExceptions) -> Self
fn from(v: SetPauseOnExceptions) -> Self
Converts to this type from the input type.
Source§impl From<SetPauseOnExceptions> for JsProtocolCommands
impl From<SetPauseOnExceptions> for JsProtocolCommands
Source§fn from(v: SetPauseOnExceptions) -> Self
fn from(v: SetPauseOnExceptions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetPauseOnExceptions
impl PartialEq for SetPauseOnExceptions
Source§impl Serialize for SetPauseOnExceptions
impl Serialize for SetPauseOnExceptions
Source§impl TryFrom<Command> for SetPauseOnExceptions
impl TryFrom<Command> for SetPauseOnExceptions
Source§impl TryFrom<DebuggerCommands> for SetPauseOnExceptions
impl TryFrom<DebuggerCommands> for SetPauseOnExceptions
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, <SetPauseOnExceptions as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SetPauseOnExceptions as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SetPauseOnExceptions
impl TryFrom<JsProtocolCommands> for SetPauseOnExceptions
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, <SetPauseOnExceptions as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetPauseOnExceptions as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetPauseOnExceptions
Auto Trait Implementations§
impl Freeze for SetPauseOnExceptions
impl RefUnwindSafe for SetPauseOnExceptions
impl Send for SetPauseOnExceptions
impl Sync for SetPauseOnExceptions
impl Unpin for SetPauseOnExceptions
impl UnsafeUnpin for SetPauseOnExceptions
impl UnwindSafe for SetPauseOnExceptions
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