pub struct SetBreakpointsActive {
pub method: SetBreakpointsActiveMethod,
pub params: SetBreakpointsActiveParams,
}Expand description
Activates / deactivates all breakpoints on the page. setBreakpointsActive
Fields§
§method: SetBreakpointsActiveMethod§params: SetBreakpointsActiveParamsImplementations§
Source§impl SetBreakpointsActive
impl SetBreakpointsActive
pub fn builder() -> SetBreakpointsActiveBuilder
Source§impl SetBreakpointsActive
impl SetBreakpointsActive
pub const IDENTIFIER: &'static str = "Debugger.setBreakpointsActive"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetBreakpointsActive
impl Clone for SetBreakpointsActive
Source§fn clone(&self) -> SetBreakpointsActive
fn clone(&self) -> SetBreakpointsActive
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 SetBreakpointsActive
impl CommandResult for SetBreakpointsActive
type Result = SetBreakpointsActiveResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetBreakpointsActive
impl Debug for SetBreakpointsActive
Source§impl<'de> Deserialize<'de> for SetBreakpointsActive
impl<'de> Deserialize<'de> for SetBreakpointsActive
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<SetBreakpointsActive> for Command
impl From<SetBreakpointsActive> for Command
Source§fn from(v: SetBreakpointsActive) -> Self
fn from(v: SetBreakpointsActive) -> Self
Converts to this type from the input type.
Source§impl From<SetBreakpointsActive> for DebuggerCommands
impl From<SetBreakpointsActive> for DebuggerCommands
Source§fn from(v: SetBreakpointsActive) -> Self
fn from(v: SetBreakpointsActive) -> Self
Converts to this type from the input type.
Source§impl From<SetBreakpointsActive> for JsProtocolCommands
impl From<SetBreakpointsActive> for JsProtocolCommands
Source§fn from(v: SetBreakpointsActive) -> Self
fn from(v: SetBreakpointsActive) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetBreakpointsActive
impl PartialEq for SetBreakpointsActive
Source§impl Serialize for SetBreakpointsActive
impl Serialize for SetBreakpointsActive
Source§impl TryFrom<Command> for SetBreakpointsActive
impl TryFrom<Command> for SetBreakpointsActive
Source§impl TryFrom<DebuggerCommands> for SetBreakpointsActive
impl TryFrom<DebuggerCommands> for SetBreakpointsActive
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, <SetBreakpointsActive as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SetBreakpointsActive as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SetBreakpointsActive
impl TryFrom<JsProtocolCommands> for SetBreakpointsActive
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, <SetBreakpointsActive as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetBreakpointsActive as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetBreakpointsActive
Auto Trait Implementations§
impl Freeze for SetBreakpointsActive
impl RefUnwindSafe for SetBreakpointsActive
impl Send for SetBreakpointsActive
impl Sync for SetBreakpointsActive
impl Unpin for SetBreakpointsActive
impl UnsafeUnpin for SetBreakpointsActive
impl UnwindSafe for SetBreakpointsActive
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