pub struct SetDOMBreakpointBuilder { /* private fields */ }Expand description
Builder for SetDOMBreakpoint.
Implementations§
Source§impl SetDOMBreakpointBuilder
impl SetDOMBreakpointBuilder
Sourcepub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
pub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
Identifier of the node to set breakpoint on.
Sourcepub fn type<VALUE: Into<DomBreakpointType>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn type<VALUE: Into<DomBreakpointType>>( &mut self, value: VALUE, ) -> &mut Self
Type of the operation to stop upon.
Sourcepub fn build(&self) -> Result<SetDOMBreakpoint, SetDOMBreakpointBuilderError>
pub fn build(&self) -> Result<SetDOMBreakpoint, SetDOMBreakpointBuilderError>
Trait Implementations§
Source§impl Clone for SetDOMBreakpointBuilder
impl Clone for SetDOMBreakpointBuilder
Source§fn clone(&self) -> SetDOMBreakpointBuilder
fn clone(&self) -> SetDOMBreakpointBuilder
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 moreAuto Trait Implementations§
impl Freeze for SetDOMBreakpointBuilder
impl RefUnwindSafe for SetDOMBreakpointBuilder
impl Send for SetDOMBreakpointBuilder
impl Sync for SetDOMBreakpointBuilder
impl Unpin for SetDOMBreakpointBuilder
impl UnsafeUnpin for SetDOMBreakpointBuilder
impl UnwindSafe for SetDOMBreakpointBuilder
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