pub struct SetBlackboxExecutionContextsParams {
pub uniqueIds: Vec<String>,
}Expand description
Replace previous blackbox execution contexts with passed ones. Forces backend to skip stepping/pausing in scripts in these execution contexts. VM will try to leave blackboxed script by performing ‘step in’ several times, finally resorting to ‘step out’ if unsuccessful.
Fields§
§uniqueIds: Vec<String>Array of execution context unique ids for the debugger to ignore.
Implementations§
Trait Implementations§
Source§impl Clone for SetBlackboxExecutionContextsParams
impl Clone for SetBlackboxExecutionContextsParams
Source§fn clone(&self) -> SetBlackboxExecutionContextsParams
fn clone(&self) -> SetBlackboxExecutionContextsParams
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 Default for SetBlackboxExecutionContextsParams
impl Default for SetBlackboxExecutionContextsParams
Source§fn default() -> SetBlackboxExecutionContextsParams
fn default() -> SetBlackboxExecutionContextsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetBlackboxExecutionContextsParams
impl<'de> Deserialize<'de> for SetBlackboxExecutionContextsParams
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 SetBlackboxExecutionContextsParams
impl RefUnwindSafe for SetBlackboxExecutionContextsParams
impl Send for SetBlackboxExecutionContextsParams
impl Sync for SetBlackboxExecutionContextsParams
impl Unpin for SetBlackboxExecutionContextsParams
impl UnsafeUnpin for SetBlackboxExecutionContextsParams
impl UnwindSafe for SetBlackboxExecutionContextsParams
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