pub struct SetBreakpointResult {
pub breakpoint_id: BreakpointId,
pub actual_location: Location,
}Fields§
§breakpoint_id: BreakpointIdId of the created breakpoint for further reference.
actual_location: LocationLocation this breakpoint resolved into.
Trait Implementations§
Source§impl Clone for SetBreakpointResult
impl Clone for SetBreakpointResult
Source§fn clone(&self) -> SetBreakpointResult
fn clone(&self) -> SetBreakpointResult
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 SetBreakpointResult
impl Debug for SetBreakpointResult
Source§impl<'de> Deserialize<'de> for SetBreakpointResult
impl<'de> Deserialize<'de> for SetBreakpointResult
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
Source§impl PartialEq for SetBreakpointResult
impl PartialEq for SetBreakpointResult
Source§impl Serialize for SetBreakpointResult
impl Serialize for SetBreakpointResult
Source§impl TryFrom<Value> for SetBreakpointResult
impl TryFrom<Value> for SetBreakpointResult
impl StructuralPartialEq for SetBreakpointResult
Auto Trait Implementations§
impl Freeze for SetBreakpointResult
impl RefUnwindSafe for SetBreakpointResult
impl Send for SetBreakpointResult
impl Sync for SetBreakpointResult
impl Unpin for SetBreakpointResult
impl UnsafeUnpin for SetBreakpointResult
impl UnwindSafe for SetBreakpointResult
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