pub struct BreakpointEvent {
pub reason: BreakpointEventReason,
pub breakpoint: Breakpoint,
}
Expand description
The event indicates that some information about a breakpoint has changed.
Fields§
§reason: BreakpointEventReason
The reason for the event.
breakpoint: Breakpoint
The id
attribute is used to find the target breakpoint, the other attributes are used as the new values.
Trait Implementations§
Source§impl Clone for BreakpointEvent
impl Clone for BreakpointEvent
Source§fn clone(&self) -> BreakpointEvent
fn clone(&self) -> BreakpointEvent
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 BreakpointEvent
impl Debug for BreakpointEvent
Source§impl<'de> Deserialize<'de> for BreakpointEvent
impl<'de> Deserialize<'de> for BreakpointEvent
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 BreakpointEvent
impl RefUnwindSafe for BreakpointEvent
impl Send for BreakpointEvent
impl Sync for BreakpointEvent
impl Unpin for BreakpointEvent
impl UnwindSafe for BreakpointEvent
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