pub struct SetDomBreakpoint {
pub method: SetDomBreakpointMethod,
pub params: SetDomBreakpointParams,
}Expand description
Sets breakpoint on particular operation with DOM. setDOMBreakpoint
Fields§
§method: SetDomBreakpointMethod§params: SetDomBreakpointParamsImplementations§
Source§impl SetDomBreakpoint
impl SetDomBreakpoint
pub fn builder() -> SetDomBreakpointBuilder
Source§impl SetDomBreakpoint
impl SetDomBreakpoint
pub const IDENTIFIER: &'static str = "DOMDebugger.setDOMBreakpoint"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetDomBreakpoint
impl Clone for SetDomBreakpoint
Source§fn clone(&self) -> SetDomBreakpoint
fn clone(&self) -> SetDomBreakpoint
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 SetDomBreakpoint
impl CommandResult for SetDomBreakpoint
type Result = SetDomBreakpointResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetDomBreakpoint
impl Debug for SetDomBreakpoint
Source§impl<'de> Deserialize<'de> for SetDomBreakpoint
impl<'de> Deserialize<'de> for SetDomBreakpoint
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<SetDomBreakpoint> for BrowserProtocolCommands
impl From<SetDomBreakpoint> for BrowserProtocolCommands
Source§fn from(v: SetDomBreakpoint) -> Self
fn from(v: SetDomBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetDomBreakpoint> for Command
impl From<SetDomBreakpoint> for Command
Source§fn from(v: SetDomBreakpoint) -> Self
fn from(v: SetDomBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetDomBreakpoint> for DomDebuggerCommands
impl From<SetDomBreakpoint> for DomDebuggerCommands
Source§fn from(v: SetDomBreakpoint) -> Self
fn from(v: SetDomBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetDomBreakpoint
impl PartialEq for SetDomBreakpoint
Source§impl Serialize for SetDomBreakpoint
impl Serialize for SetDomBreakpoint
Source§impl TryFrom<BrowserProtocolCommands> for SetDomBreakpoint
impl TryFrom<BrowserProtocolCommands> for SetDomBreakpoint
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetDomBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetDomBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetDomBreakpoint
impl TryFrom<Command> for SetDomBreakpoint
Source§impl TryFrom<DomDebuggerCommands> for SetDomBreakpoint
impl TryFrom<DomDebuggerCommands> for SetDomBreakpoint
Source§type Error = DomDebuggerCommands
type Error = DomDebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomDebuggerCommands,
) -> Result<Self, <SetDomBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
fn try_from( e: DomDebuggerCommands, ) -> Result<Self, <SetDomBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetDomBreakpoint
Auto Trait Implementations§
impl Freeze for SetDomBreakpoint
impl RefUnwindSafe for SetDomBreakpoint
impl Send for SetDomBreakpoint
impl Sync for SetDomBreakpoint
impl Unpin for SetDomBreakpoint
impl UnsafeUnpin for SetDomBreakpoint
impl UnwindSafe for SetDomBreakpoint
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