pub struct SetBreakpointOnFunctionCallBuilder { /* private fields */ }Expand description
Builder for SetBreakpointOnFunctionCall.
Implementations§
Source§impl SetBreakpointOnFunctionCallBuilder
impl SetBreakpointOnFunctionCallBuilder
Sourcepub fn object_id<VALUE: Into<RemoteObjectId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn object_id<VALUE: Into<RemoteObjectId>>( &mut self, value: VALUE, ) -> &mut Self
Function object id.
Sourcepub fn condition<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn condition<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Expression to use as a breakpoint condition. When specified, debugger will stop on the breakpoint if this expression evaluates to true.
Sourcepub fn build(
&self,
) -> Result<SetBreakpointOnFunctionCall, SetBreakpointOnFunctionCallBuilderError>
pub fn build( &self, ) -> Result<SetBreakpointOnFunctionCall, SetBreakpointOnFunctionCallBuilderError>
Trait Implementations§
Source§impl Clone for SetBreakpointOnFunctionCallBuilder
impl Clone for SetBreakpointOnFunctionCallBuilder
Source§fn clone(&self) -> SetBreakpointOnFunctionCallBuilder
fn clone(&self) -> SetBreakpointOnFunctionCallBuilder
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 SetBreakpointOnFunctionCallBuilder
impl RefUnwindSafe for SetBreakpointOnFunctionCallBuilder
impl Send for SetBreakpointOnFunctionCallBuilder
impl Sync for SetBreakpointOnFunctionCallBuilder
impl Unpin for SetBreakpointOnFunctionCallBuilder
impl UnsafeUnpin for SetBreakpointOnFunctionCallBuilder
impl UnwindSafe for SetBreakpointOnFunctionCallBuilder
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