pub struct BreakpointLocationsResponse {
pub breakpoints: Vec<BreakpointLocation>,
}
Expand description
Response to breakpointLocations
request.
Contains possible locations for source breakpoints.
Fields§
§breakpoints: Vec<BreakpointLocation>
Sorted set of possible breakpoint locations.
Trait Implementations§
Source§impl Clone for BreakpointLocationsResponse
impl Clone for BreakpointLocationsResponse
Source§fn clone(&self) -> BreakpointLocationsResponse
fn clone(&self) -> BreakpointLocationsResponse
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 moreSource§impl Debug for BreakpointLocationsResponse
impl Debug for BreakpointLocationsResponse
Source§impl<'de> Deserialize<'de> for BreakpointLocationsResponse
impl<'de> Deserialize<'de> for BreakpointLocationsResponse
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 Freeze for BreakpointLocationsResponse
impl RefUnwindSafe for BreakpointLocationsResponse
impl Send for BreakpointLocationsResponse
impl Sync for BreakpointLocationsResponse
impl Unpin for BreakpointLocationsResponse
impl UnwindSafe for BreakpointLocationsResponse
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