pub struct SetBreakpointReturnObjectBuilder { /* private fields */ }Expand description
Builder for SetBreakpointReturnObject.
Implementations§
Source§impl SetBreakpointReturnObjectBuilder
impl SetBreakpointReturnObjectBuilder
Sourcepub fn breakpoint_id(&mut self, value: BreakpointId) -> &mut Self
pub fn breakpoint_id(&mut self, value: BreakpointId) -> &mut Self
Id of the created breakpoint for further reference.
Sourcepub fn actual_location(&mut self, value: Location) -> &mut Self
pub fn actual_location(&mut self, value: Location) -> &mut Self
Location this breakpoint resolved into.
Sourcepub fn build(
&self,
) -> Result<SetBreakpointReturnObject, SetBreakpointReturnObjectBuilderError>
pub fn build( &self, ) -> Result<SetBreakpointReturnObject, SetBreakpointReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for SetBreakpointReturnObjectBuilder
impl Clone for SetBreakpointReturnObjectBuilder
Source§fn clone(&self) -> SetBreakpointReturnObjectBuilder
fn clone(&self) -> SetBreakpointReturnObjectBuilder
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 SetBreakpointReturnObjectBuilder
impl RefUnwindSafe for SetBreakpointReturnObjectBuilder
impl Send for SetBreakpointReturnObjectBuilder
impl Sync for SetBreakpointReturnObjectBuilder
impl Unpin for SetBreakpointReturnObjectBuilder
impl UnsafeUnpin for SetBreakpointReturnObjectBuilder
impl UnwindSafe for SetBreakpointReturnObjectBuilder
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