pub struct SetBreakpointOnFunctionCallReturns<'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> SetBreakpointOnFunctionCallReturns<'a>
impl<'a> SetBreakpointOnFunctionCallReturns<'a>
Sourcepub fn builder(
breakpoint_id: impl Into<BreakpointId<'a>>,
) -> SetBreakpointOnFunctionCallReturnsBuilder<'a>
pub fn builder( breakpoint_id: impl Into<BreakpointId<'a>>, ) -> SetBreakpointOnFunctionCallReturnsBuilder<'a>
Creates a builder for this type with the required parameters:
breakpoint_id: Id of the created breakpoint for further reference.
Sourcepub fn breakpoint_id(&self) -> &BreakpointId<'a>
pub fn breakpoint_id(&self) -> &BreakpointId<'a>
Id of the created breakpoint for further reference.
Trait Implementations§
Source§impl<'a> Clone for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Clone for SetBreakpointOnFunctionCallReturns<'a>
Source§fn clone(&self) -> SetBreakpointOnFunctionCallReturns<'a>
fn clone(&self) -> SetBreakpointOnFunctionCallReturns<'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 SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Debug for SetBreakpointOnFunctionCallReturns<'a>
Source§impl<'a> Default for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Default for SetBreakpointOnFunctionCallReturns<'a>
Source§fn default() -> SetBreakpointOnFunctionCallReturns<'a>
fn default() -> SetBreakpointOnFunctionCallReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for SetBreakpointOnFunctionCallReturns<'a>
impl<'de, 'a> Deserialize<'de> for SetBreakpointOnFunctionCallReturns<'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 SetBreakpointOnFunctionCallReturns<'a>
impl<'a> RefUnwindSafe for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Send for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Sync for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> Unpin for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> UnsafeUnpin for SetBreakpointOnFunctionCallReturns<'a>
impl<'a> UnwindSafe for SetBreakpointOnFunctionCallReturns<'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