pub struct GetPossibleBreakpointsReturns<'a> { /* private fields */ }Expand description
Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.
Implementations§
Source§impl<'a> GetPossibleBreakpointsReturns<'a>
impl<'a> GetPossibleBreakpointsReturns<'a>
Sourcepub fn builder(
locations: Vec<BreakLocation<'a>>,
) -> GetPossibleBreakpointsReturnsBuilder<'a>
pub fn builder( locations: Vec<BreakLocation<'a>>, ) -> GetPossibleBreakpointsReturnsBuilder<'a>
Creates a builder for this type with the required parameters:
locations: List of the possible breakpoint locations.
Sourcepub fn locations(&self) -> &[BreakLocation<'a>]
pub fn locations(&self) -> &[BreakLocation<'a>]
List of the possible breakpoint locations.
Trait Implementations§
Source§impl<'a> Clone for GetPossibleBreakpointsReturns<'a>
impl<'a> Clone for GetPossibleBreakpointsReturns<'a>
Source§fn clone(&self) -> GetPossibleBreakpointsReturns<'a>
fn clone(&self) -> GetPossibleBreakpointsReturns<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for GetPossibleBreakpointsReturns<'a>
impl<'a> Debug for GetPossibleBreakpointsReturns<'a>
Source§impl<'a> Default for GetPossibleBreakpointsReturns<'a>
impl<'a> Default for GetPossibleBreakpointsReturns<'a>
Source§fn default() -> GetPossibleBreakpointsReturns<'a>
fn default() -> GetPossibleBreakpointsReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for GetPossibleBreakpointsReturns<'a>
impl<'de, 'a> Deserialize<'de> for GetPossibleBreakpointsReturns<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for GetPossibleBreakpointsReturns<'a>
impl<'a> RefUnwindSafe for GetPossibleBreakpointsReturns<'a>
impl<'a> Send for GetPossibleBreakpointsReturns<'a>
impl<'a> Sync for GetPossibleBreakpointsReturns<'a>
impl<'a> Unpin for GetPossibleBreakpointsReturns<'a>
impl<'a> UnsafeUnpin for GetPossibleBreakpointsReturns<'a>
impl<'a> UnwindSafe for GetPossibleBreakpointsReturns<'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