pub struct RemoveDOMBreakpointParams { /* private fields */ }Expand description
Removes DOM breakpoint that was set using ‘setDOMBreakpoint’.
Implementations§
Source§impl RemoveDOMBreakpointParams
impl RemoveDOMBreakpointParams
Sourcepub fn builder(
node_id: NodeId,
type_: impl Into<DOMBreakpointType>,
) -> RemoveDOMBreakpointParamsBuilder
pub fn builder( node_id: NodeId, type_: impl Into<DOMBreakpointType>, ) -> RemoveDOMBreakpointParamsBuilder
Creates a builder for this type with the required parameters:
node_id: Identifier of the node to remove breakpoint from.type_: Type of the breakpoint to remove.
Sourcepub fn type_(&self) -> &DOMBreakpointType
pub fn type_(&self) -> &DOMBreakpointType
Type of the breakpoint to remove.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for RemoveDOMBreakpointParams
impl<'a> CdpCommand<'a> for RemoveDOMBreakpointParams
Source§impl Clone for RemoveDOMBreakpointParams
impl Clone for RemoveDOMBreakpointParams
Source§fn clone(&self) -> RemoveDOMBreakpointParams
fn clone(&self) -> RemoveDOMBreakpointParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoveDOMBreakpointParams
impl Debug for RemoveDOMBreakpointParams
Source§impl Default for RemoveDOMBreakpointParams
impl Default for RemoveDOMBreakpointParams
Source§fn default() -> RemoveDOMBreakpointParams
fn default() -> RemoveDOMBreakpointParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveDOMBreakpointParams
impl<'de> Deserialize<'de> for RemoveDOMBreakpointParams
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 RemoveDOMBreakpointParams
impl RefUnwindSafe for RemoveDOMBreakpointParams
impl Send for RemoveDOMBreakpointParams
impl Sync for RemoveDOMBreakpointParams
impl Unpin for RemoveDOMBreakpointParams
impl UnsafeUnpin for RemoveDOMBreakpointParams
impl UnwindSafe for RemoveDOMBreakpointParams
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