pub struct CallFrameBuilder<'a> { /* private fields */ }Implementations§
Source§impl<'a> CallFrameBuilder<'a>
impl<'a> CallFrameBuilder<'a>
Sourcepub fn function_location(self, function_location: Location<'a>) -> Self
pub fn function_location(self, function_location: Location<'a>) -> Self
Location in the source code.
Sourcepub fn return_value(self, return_value: RemoteObject<'a>) -> Self
pub fn return_value(self, return_value: RemoteObject<'a>) -> Self
The value being returned, if the function is at return point.
Sourcepub fn can_be_restarted(self, can_be_restarted: bool) -> Self
pub fn can_be_restarted(self, can_be_restarted: bool) -> Self
Valid only while the VM is paused and indicates whether this frame can be restarted or not. Note that a ‘true’ value here does not guarantee that Debugger#restartFrame with this CallFrameId will be successful, but it is very likely.
pub fn build(self) -> CallFrame<'a>
Auto Trait Implementations§
impl<'a> Freeze for CallFrameBuilder<'a>
impl<'a> RefUnwindSafe for CallFrameBuilder<'a>
impl<'a> Send for CallFrameBuilder<'a>
impl<'a> Sync for CallFrameBuilder<'a>
impl<'a> Unpin for CallFrameBuilder<'a>
impl<'a> UnsafeUnpin for CallFrameBuilder<'a>
impl<'a> UnwindSafe for CallFrameBuilder<'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