pub struct SetBreakpointOnFunctionCallParams<'a> { /* private fields */ }Expand description
Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint.
Implementations§
Source§impl<'a> SetBreakpointOnFunctionCallParams<'a>
impl<'a> SetBreakpointOnFunctionCallParams<'a>
Sourcepub fn builder(
object_id: RemoteObjectId<'a>,
) -> SetBreakpointOnFunctionCallParamsBuilder<'a>
pub fn builder( object_id: RemoteObjectId<'a>, ) -> SetBreakpointOnFunctionCallParamsBuilder<'a>
Creates a builder for this type with the required parameters:
object_id: Function object id.
Sourcepub fn object_id(&self) -> &RemoteObjectId<'a>
pub fn object_id(&self) -> &RemoteObjectId<'a>
Function object id.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for SetBreakpointOnFunctionCallParams<'a>
impl<'a> CdpCommand<'a> for SetBreakpointOnFunctionCallParams<'a>
Source§impl<'a> Clone for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Clone for SetBreakpointOnFunctionCallParams<'a>
Source§fn clone(&self) -> SetBreakpointOnFunctionCallParams<'a>
fn clone(&self) -> SetBreakpointOnFunctionCallParams<'a>
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<'a> Debug for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Debug for SetBreakpointOnFunctionCallParams<'a>
Source§impl<'a> Default for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Default for SetBreakpointOnFunctionCallParams<'a>
Source§fn default() -> SetBreakpointOnFunctionCallParams<'a>
fn default() -> SetBreakpointOnFunctionCallParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for SetBreakpointOnFunctionCallParams<'a>
impl<'de, 'a> Deserialize<'de> for SetBreakpointOnFunctionCallParams<'a>
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<'a> Freeze for SetBreakpointOnFunctionCallParams<'a>
impl<'a> RefUnwindSafe for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Send for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Sync for SetBreakpointOnFunctionCallParams<'a>
impl<'a> Unpin for SetBreakpointOnFunctionCallParams<'a>
impl<'a> UnsafeUnpin for SetBreakpointOnFunctionCallParams<'a>
impl<'a> UnwindSafe for SetBreakpointOnFunctionCallParams<'a>
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