pub struct BreakpointEventBody {
pub breakpoint: Breakpoint,
pub reason: String,
}
Fields§
§breakpoint: Breakpoint
The ‘id’ attribute is used to find the target breakpoint and the other attributes are used as the new values.
reason: String
The reason for the event.
Trait Implementations§
Source§impl Clone for BreakpointEventBody
impl Clone for BreakpointEventBody
Source§fn clone(&self) -> BreakpointEventBody
fn clone(&self) -> BreakpointEventBody
Returns a copy 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 BreakpointEventBody
impl Debug for BreakpointEventBody
Source§impl<'de> Deserialize<'de> for BreakpointEventBody
impl<'de> Deserialize<'de> for BreakpointEventBody
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 BreakpointEventBody
impl PartialEq for BreakpointEventBody
Source§impl Serialize for BreakpointEventBody
impl Serialize for BreakpointEventBody
impl StructuralPartialEq for BreakpointEventBody
Auto Trait Implementations§
impl Freeze for BreakpointEventBody
impl RefUnwindSafe for BreakpointEventBody
impl Send for BreakpointEventBody
impl Sync for BreakpointEventBody
impl Unpin for BreakpointEventBody
impl UnwindSafe for BreakpointEventBody
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