pub struct SetSkipAllPauses {
pub method: SetSkipAllPausesMethod,
pub params: SetSkipAllPausesParams,
}Expand description
Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc). setSkipAllPauses
Fields§
§method: SetSkipAllPausesMethod§params: SetSkipAllPausesParamsImplementations§
Source§impl SetSkipAllPauses
impl SetSkipAllPauses
pub fn builder() -> SetSkipAllPausesBuilder
Source§impl SetSkipAllPauses
impl SetSkipAllPauses
pub const IDENTIFIER: &'static str = "Debugger.setSkipAllPauses"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetSkipAllPauses
impl Clone for SetSkipAllPauses
Source§fn clone(&self) -> SetSkipAllPauses
fn clone(&self) -> SetSkipAllPauses
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 SetSkipAllPauses
impl CommandResult for SetSkipAllPauses
type Result = SetSkipAllPausesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetSkipAllPauses
impl Debug for SetSkipAllPauses
Source§impl<'de> Deserialize<'de> for SetSkipAllPauses
impl<'de> Deserialize<'de> for SetSkipAllPauses
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<SetSkipAllPauses> for Command
impl From<SetSkipAllPauses> for Command
Source§fn from(v: SetSkipAllPauses) -> Self
fn from(v: SetSkipAllPauses) -> Self
Converts to this type from the input type.
Source§impl From<SetSkipAllPauses> for DebuggerCommands
impl From<SetSkipAllPauses> for DebuggerCommands
Source§fn from(v: SetSkipAllPauses) -> Self
fn from(v: SetSkipAllPauses) -> Self
Converts to this type from the input type.
Source§impl From<SetSkipAllPauses> for JsProtocolCommands
impl From<SetSkipAllPauses> for JsProtocolCommands
Source§fn from(v: SetSkipAllPauses) -> Self
fn from(v: SetSkipAllPauses) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetSkipAllPauses
impl PartialEq for SetSkipAllPauses
Source§impl Serialize for SetSkipAllPauses
impl Serialize for SetSkipAllPauses
Source§impl TryFrom<Command> for SetSkipAllPauses
impl TryFrom<Command> for SetSkipAllPauses
Source§impl TryFrom<DebuggerCommands> for SetSkipAllPauses
impl TryFrom<DebuggerCommands> for SetSkipAllPauses
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, <SetSkipAllPauses as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SetSkipAllPauses as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SetSkipAllPauses
impl TryFrom<JsProtocolCommands> for SetSkipAllPauses
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, <SetSkipAllPauses as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetSkipAllPauses as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetSkipAllPauses
Auto Trait Implementations§
impl Freeze for SetSkipAllPauses
impl RefUnwindSafe for SetSkipAllPauses
impl Send for SetSkipAllPauses
impl Sync for SetSkipAllPauses
impl Unpin for SetSkipAllPauses
impl UnsafeUnpin for SetSkipAllPauses
impl UnwindSafe for SetSkipAllPauses
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