pub struct SetBreakpointReturns<'a> { /* private fields */ }Expand description
Sets JavaScript breakpoint at a given location.
Implementations§
Source§impl<'a> SetBreakpointReturns<'a>
impl<'a> SetBreakpointReturns<'a>
Sourcepub fn builder(
breakpoint_id: impl Into<BreakpointId<'a>>,
actual_location: Location<'a>,
) -> SetBreakpointReturnsBuilder<'a>
pub fn builder( breakpoint_id: impl Into<BreakpointId<'a>>, actual_location: Location<'a>, ) -> SetBreakpointReturnsBuilder<'a>
Creates a builder for this type with the required parameters:
breakpoint_id: Id of the created breakpoint for further reference.actual_location: Location this breakpoint resolved into.
Sourcepub fn breakpoint_id(&self) -> &BreakpointId<'a>
pub fn breakpoint_id(&self) -> &BreakpointId<'a>
Id of the created breakpoint for further reference.
Sourcepub fn actual_location(&self) -> &Location<'a>
pub fn actual_location(&self) -> &Location<'a>
Location this breakpoint resolved into.
Trait Implementations§
Source§impl<'a> Clone for SetBreakpointReturns<'a>
impl<'a> Clone for SetBreakpointReturns<'a>
Source§fn clone(&self) -> SetBreakpointReturns<'a>
fn clone(&self) -> SetBreakpointReturns<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SetBreakpointReturns<'a>
impl<'a> Debug for SetBreakpointReturns<'a>
Source§impl<'a> Default for SetBreakpointReturns<'a>
impl<'a> Default for SetBreakpointReturns<'a>
Source§fn default() -> SetBreakpointReturns<'a>
fn default() -> SetBreakpointReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for SetBreakpointReturns<'a>
impl<'de, 'a> Deserialize<'de> for SetBreakpointReturns<'a>
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<'a> Freeze for SetBreakpointReturns<'a>
impl<'a> RefUnwindSafe for SetBreakpointReturns<'a>
impl<'a> Send for SetBreakpointReturns<'a>
impl<'a> Sync for SetBreakpointReturns<'a>
impl<'a> Unpin for SetBreakpointReturns<'a>
impl<'a> UnsafeUnpin for SetBreakpointReturns<'a>
impl<'a> UnwindSafe for SetBreakpointReturns<'a>
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