pub struct EventBreakpointsClient { /* private fields */ }Expand description
Client for EventBreakpoints domain commands.
Implementations§
Source§impl EventBreakpointsClient
impl EventBreakpointsClient
Sourcepub async fn set_instrumentation_breakpoint(
&self,
params: SetInstrumentationBreakpointParams,
session_id: Option<&str>,
) -> Result<Value, CdpError>
pub async fn set_instrumentation_breakpoint( &self, params: SetInstrumentationBreakpointParams, session_id: Option<&str>, ) -> Result<Value, CdpError>
Sets breakpoint on particular native event.
Sourcepub async fn remove_instrumentation_breakpoint(
&self,
params: RemoveInstrumentationBreakpointParams,
session_id: Option<&str>,
) -> Result<Value, CdpError>
pub async fn remove_instrumentation_breakpoint( &self, params: RemoveInstrumentationBreakpointParams, session_id: Option<&str>, ) -> Result<Value, CdpError>
Removes breakpoint on particular native event.
Auto Trait Implementations§
impl Freeze for EventBreakpointsClient
impl !RefUnwindSafe for EventBreakpointsClient
impl Send for EventBreakpointsClient
impl Sync for EventBreakpointsClient
impl Unpin for EventBreakpointsClient
impl UnsafeUnpin for EventBreakpointsClient
impl !UnwindSafe for EventBreakpointsClient
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