pub struct SetDOMBreakpointParams {
pub nodeId: NodeId,
pub type_: DOMBreakpointType,
}Expand description
Sets breakpoint on particular operation with DOM.
Fields§
§nodeId: NodeIdIdentifier of the node to set breakpoint on.
type_: DOMBreakpointTypeType of the operation to stop upon.
Implementations§
Trait Implementations§
Source§impl CdpCommand for SetDOMBreakpointParams
impl CdpCommand for SetDOMBreakpointParams
Source§impl Clone for SetDOMBreakpointParams
impl Clone for SetDOMBreakpointParams
Source§fn clone(&self) -> SetDOMBreakpointParams
fn clone(&self) -> SetDOMBreakpointParams
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 Debug for SetDOMBreakpointParams
impl Debug for SetDOMBreakpointParams
Source§impl Default for SetDOMBreakpointParams
impl Default for SetDOMBreakpointParams
Source§fn default() -> SetDOMBreakpointParams
fn default() -> SetDOMBreakpointParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetDOMBreakpointParams
impl<'de> Deserialize<'de> for SetDOMBreakpointParams
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
Auto Trait Implementations§
impl Freeze for SetDOMBreakpointParams
impl RefUnwindSafe for SetDOMBreakpointParams
impl Send for SetDOMBreakpointParams
impl Sync for SetDOMBreakpointParams
impl Unpin for SetDOMBreakpointParams
impl UnsafeUnpin for SetDOMBreakpointParams
impl UnwindSafe for SetDOMBreakpointParams
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