pub struct ResolvedBreakpointBuilder { /* private fields */ }Expand description
Builder for ResolvedBreakpoint.
Implementations§
Source§impl ResolvedBreakpointBuilder
impl ResolvedBreakpointBuilder
Sourcepub fn breakpoint_id<VALUE: Into<BreakpointId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn breakpoint_id<VALUE: Into<BreakpointId>>( &mut self, value: VALUE, ) -> &mut Self
Breakpoint unique identifier.
Sourcepub fn location<VALUE: Into<Location>>(&mut self, value: VALUE) -> &mut Self
pub fn location<VALUE: Into<Location>>(&mut self, value: VALUE) -> &mut Self
Actual breakpoint location.
Sourcepub fn build(
&self,
) -> Result<ResolvedBreakpoint, ResolvedBreakpointBuilderError>
pub fn build( &self, ) -> Result<ResolvedBreakpoint, ResolvedBreakpointBuilderError>
Trait Implementations§
Source§impl Clone for ResolvedBreakpointBuilder
impl Clone for ResolvedBreakpointBuilder
Source§fn clone(&self) -> ResolvedBreakpointBuilder
fn clone(&self) -> ResolvedBreakpointBuilder
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 ResolvedBreakpointBuilder
impl RefUnwindSafe for ResolvedBreakpointBuilder
impl Send for ResolvedBreakpointBuilder
impl Sync for ResolvedBreakpointBuilder
impl Unpin for ResolvedBreakpointBuilder
impl UnsafeUnpin for ResolvedBreakpointBuilder
impl UnwindSafe for ResolvedBreakpointBuilder
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