Struct chrome_remote_interface_model::debugger::EvaluateOnCallFrameCommand[][src]

pub struct EvaluateOnCallFrameCommand { /* fields omitted */ }
This is supported on crate features Debugger and Runtime only.

Evaluates expression on a given call frame.

Implementations

impl EvaluateOnCallFrameCommand[src]

pub fn builder() -> EvaluateOnCallFrameCommandBuilder[src]

pub fn call_frame_id(&self) -> &CallFrameId[src]

Call frame identifier to evaluate on.

pub fn expression(&self) -> &str[src]

Expression to evaluate.

pub fn object_group(&self) -> Option<&String>[src]

String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup).

pub fn include_command_line_api(&self) -> Option<&bool>[src]

Specifies whether command line API should be available to the evaluated expression, defaults to false.

pub fn silent(&self) -> Option<&bool>[src]

In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state.

pub fn return_by_value(&self) -> Option<&bool>[src]

Whether the result is expected to be a JSON object that should be sent by value.

pub fn generate_preview(&self) -> Option<&bool>[src]

This is supported on crate feature experimental only.

Whether preview should be generated for the result.

pub fn throw_on_side_effect(&self) -> Option<&bool>[src]

Whether to throw an exception if side effect cannot be ruled out during evaluation.

pub fn timeout(&self) -> Option<&TimeDelta>[src]

This is supported on crate feature experimental only.

Terminate execution after timing out (number of milliseconds).

Trait Implementations

impl Clone for EvaluateOnCallFrameCommand[src]

impl Command for EvaluateOnCallFrameCommand[src]

type Return = EvaluateOnCallFrameReturn

Return type.

impl Debug for EvaluateOnCallFrameCommand[src]

impl<'de> Deserialize<'de> for EvaluateOnCallFrameCommand[src]

impl Serialize for EvaluateOnCallFrameCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.