Struct chrome_remote_interface_model::debugger::EvaluateOnCallFrameCommandBuilder[][src]

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

Implementations

impl EvaluateOnCallFrameCommandBuilder[src]

pub fn call_frame_id(&mut self, v: CallFrameId) -> &mut Self[src]

Call frame identifier to evaluate on.

pub fn expression(&mut self, v: String) -> &mut Self[src]

Expression to evaluate.

pub fn object_group(&mut self, v: String) -> &mut Self[src]

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

pub fn include_command_line_api(&mut self, v: bool) -> &mut Self[src]

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

pub fn silent(&mut self, v: bool) -> &mut Self[src]

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

pub fn return_by_value(&mut self, v: bool) -> &mut Self[src]

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

pub fn generate_preview(&mut self, v: bool) -> &mut Self[src]

This is supported on crate feature experimental only.

Whether preview should be generated for the result.

pub fn throw_on_side_effect(&mut self, v: bool) -> &mut Self[src]

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

pub fn timeout(&mut self, v: TimeDelta) -> &mut Self[src]

This is supported on crate feature experimental only.

Terminate execution after timing out (number of milliseconds).

pub fn build(&mut self) -> Result<EvaluateOnCallFrameCommand, &'static str>[src]

Trait Implementations

impl Clone for EvaluateOnCallFrameCommandBuilder[src]

impl Debug for EvaluateOnCallFrameCommandBuilder[src]

impl Default for EvaluateOnCallFrameCommandBuilder[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> 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.