pub struct EvaluateOnCallFrameCommand { /* private fields */ }Available on crate features
Debugger and Runtime only.Expand description
Evaluates expression on a given call frame.
Implementations§
Source§impl EvaluateOnCallFrameCommand
impl EvaluateOnCallFrameCommand
pub fn builder() -> EvaluateOnCallFrameCommandBuilder
Sourcepub fn call_frame_id(&self) -> &CallFrameId
pub fn call_frame_id(&self) -> &CallFrameId
Call frame identifier to evaluate on.
Sourcepub fn expression(&self) -> &str
pub fn expression(&self) -> &str
Expression to evaluate.
Sourcepub fn object_group(&self) -> Option<&String>
pub fn object_group(&self) -> Option<&String>
String object group name to put result into (allows rapid releasing resulting object handles
using releaseObjectGroup).
Sourcepub fn include_command_line_api(&self) -> Option<&bool>
pub fn include_command_line_api(&self) -> Option<&bool>
Specifies whether command line API should be available to the evaluated expression, defaults to false.
Sourcepub fn silent(&self) -> Option<&bool>
pub fn silent(&self) -> Option<&bool>
In silent mode exceptions thrown during evaluation are not reported and do not pause
execution. Overrides setPauseOnException state.
Sourcepub fn return_by_value(&self) -> Option<&bool>
pub fn return_by_value(&self) -> Option<&bool>
Whether the result is expected to be a JSON object that should be sent by value.
Sourcepub fn generate_preview(&self) -> Option<&bool>
Available on crate feature experimental only.
pub fn generate_preview(&self) -> Option<&bool>
experimental only.Whether preview should be generated for the result.
Sourcepub fn throw_on_side_effect(&self) -> Option<&bool>
pub fn throw_on_side_effect(&self) -> Option<&bool>
Whether to throw an exception if side effect cannot be ruled out during evaluation.
Trait Implementations§
Source§impl Clone for EvaluateOnCallFrameCommand
impl Clone for EvaluateOnCallFrameCommand
Source§fn clone(&self) -> EvaluateOnCallFrameCommand
fn clone(&self) -> EvaluateOnCallFrameCommand
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 Command for EvaluateOnCallFrameCommand
impl Command for EvaluateOnCallFrameCommand
Source§impl Debug for EvaluateOnCallFrameCommand
impl Debug for EvaluateOnCallFrameCommand
Source§impl<'de> Deserialize<'de> for EvaluateOnCallFrameCommand
impl<'de> Deserialize<'de> for EvaluateOnCallFrameCommand
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 EvaluateOnCallFrameCommand
impl RefUnwindSafe for EvaluateOnCallFrameCommand
impl Send for EvaluateOnCallFrameCommand
impl Sync for EvaluateOnCallFrameCommand
impl Unpin for EvaluateOnCallFrameCommand
impl UnwindSafe for EvaluateOnCallFrameCommand
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