pub struct SetScriptSourceReturnBuilder { /* private fields */ }Available on crate features
Debugger and Runtime only.Implementations§
Source§impl SetScriptSourceReturnBuilder
impl SetScriptSourceReturnBuilder
Sourcepub fn call_frames(&mut self, v: Vec<CallFrame>) -> &mut Self
pub fn call_frames(&mut self, v: Vec<CallFrame>) -> &mut Self
New stack trace in case editing has happened while VM was stopped.
Sourcepub fn stack_changed(&mut self, v: bool) -> &mut Self
pub fn stack_changed(&mut self, v: bool) -> &mut Self
Whether current call stack was modified after applying the changes.
Sourcepub fn async_stack_trace(&mut self, v: StackTrace) -> &mut Self
pub fn async_stack_trace(&mut self, v: StackTrace) -> &mut Self
Async stack trace, if any.
Sourcepub fn async_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
Available on crate feature experimental only.
pub fn async_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
experimental only.Async stack trace, if any.
Sourcepub fn exception_details(&mut self, v: ExceptionDetails) -> &mut Self
pub fn exception_details(&mut self, v: ExceptionDetails) -> &mut Self
Exception details if any.
pub fn build(&mut self) -> Result<SetScriptSourceReturn, &'static str>
Trait Implementations§
Source§impl Clone for SetScriptSourceReturnBuilder
impl Clone for SetScriptSourceReturnBuilder
Source§fn clone(&self) -> SetScriptSourceReturnBuilder
fn clone(&self) -> SetScriptSourceReturnBuilder
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 SetScriptSourceReturnBuilder
impl Debug for SetScriptSourceReturnBuilder
Auto Trait Implementations§
impl Freeze for SetScriptSourceReturnBuilder
impl RefUnwindSafe for SetScriptSourceReturnBuilder
impl Send for SetScriptSourceReturnBuilder
impl Sync for SetScriptSourceReturnBuilder
impl Unpin for SetScriptSourceReturnBuilder
impl UnwindSafe for SetScriptSourceReturnBuilder
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