pub struct GetPossibleBreakpointsParamsBuilder<'a> { /* private fields */ }Implementations§
Source§impl<'a> GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> GetPossibleBreakpointsParamsBuilder<'a>
Sourcepub fn end(self, end: Location<'a>) -> Self
pub fn end(self, end: Location<'a>) -> Self
End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.
Sourcepub fn restrict_to_function(self, restrict_to_function: bool) -> Self
pub fn restrict_to_function(self, restrict_to_function: bool) -> Self
Only consider locations which are in the same (non-nested) function as start.
pub fn build(self) -> GetPossibleBreakpointsParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> RefUnwindSafe for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> Send for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> Sync for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> Unpin for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> UnsafeUnpin for GetPossibleBreakpointsParamsBuilder<'a>
impl<'a> UnwindSafe for GetPossibleBreakpointsParamsBuilder<'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