pub struct SetBreakpointByUrlReturnObjectBuilder { /* private fields */ }Expand description
Builder for SetBreakpointByUrlReturnObject.
Implementations§
Source§impl SetBreakpointByUrlReturnObjectBuilder
impl SetBreakpointByUrlReturnObjectBuilder
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 locations(&mut self, value: Vec<Location>) -> &mut Self
pub fn locations(&mut self, value: Vec<Location>) -> &mut Self
List of the locations this breakpoint resolved into upon addition.
Sourcepub fn build(
&self,
) -> Result<SetBreakpointByUrlReturnObject, SetBreakpointByUrlReturnObjectBuilderError>
pub fn build( &self, ) -> Result<SetBreakpointByUrlReturnObject, SetBreakpointByUrlReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for SetBreakpointByUrlReturnObjectBuilder
impl Clone for SetBreakpointByUrlReturnObjectBuilder
Source§fn clone(&self) -> SetBreakpointByUrlReturnObjectBuilder
fn clone(&self) -> SetBreakpointByUrlReturnObjectBuilder
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 SetBreakpointByUrlReturnObjectBuilder
impl RefUnwindSafe for SetBreakpointByUrlReturnObjectBuilder
impl Send for SetBreakpointByUrlReturnObjectBuilder
impl Sync for SetBreakpointByUrlReturnObjectBuilder
impl Unpin for SetBreakpointByUrlReturnObjectBuilder
impl UnsafeUnpin for SetBreakpointByUrlReturnObjectBuilder
impl UnwindSafe for SetBreakpointByUrlReturnObjectBuilder
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