pub struct SetBreakpointReturns {
pub breakpointId: BreakpointId,
pub actualLocation: Location,
}Expand description
Sets JavaScript breakpoint at a given location.
Fields§
§breakpointId: BreakpointIdId of the created breakpoint for further reference.
actualLocation: LocationLocation this breakpoint resolved into.
Trait Implementations§
Source§impl Clone for SetBreakpointReturns
impl Clone for SetBreakpointReturns
Source§fn clone(&self) -> SetBreakpointReturns
fn clone(&self) -> SetBreakpointReturns
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 SetBreakpointReturns
impl Debug for SetBreakpointReturns
Source§impl Default for SetBreakpointReturns
impl Default for SetBreakpointReturns
Source§fn default() -> SetBreakpointReturns
fn default() -> SetBreakpointReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetBreakpointReturns
impl<'de> Deserialize<'de> for SetBreakpointReturns
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 SetBreakpointReturns
impl RefUnwindSafe for SetBreakpointReturns
impl Send for SetBreakpointReturns
impl Sync for SetBreakpointReturns
impl Unpin for SetBreakpointReturns
impl UnsafeUnpin for SetBreakpointReturns
impl UnwindSafe for SetBreakpointReturns
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