Struct chromiumoxide::cdp::js_protocol::debugger::EvaluateOnCallFrameParams[][src]

pub struct EvaluateOnCallFrameParams {
    pub call_frame_id: CallFrameId,
    pub expression: String,
    pub object_group: Option<String>,
    pub include_command_line_api: Option<bool>,
    pub silent: Option<bool>,
    pub return_by_value: Option<bool>,
    pub generate_preview: Option<bool>,
    pub throw_on_side_effect: Option<bool>,
    pub timeout: Option<TimeDelta>,
}

Evaluates expression on a given call frame. evaluateOnCallFrame

Fields

call_frame_id: CallFrameId

Call frame identifier to evaluate on.

expression: String

Expression to evaluate.

object_group: Option<String>

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

include_command_line_api: Option<bool>

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

silent: Option<bool>

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

return_by_value: Option<bool>

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

generate_preview: Option<bool>

Whether preview should be generated for the result.

throw_on_side_effect: Option<bool>

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

timeout: Option<TimeDelta>

Terminate execution after timing out (number of milliseconds).

Implementations

impl EvaluateOnCallFrameParams[src]

pub fn new(
    call_frame_id: impl Into<CallFrameId>,
    expression: impl Into<String>
) -> EvaluateOnCallFrameParams
[src]

impl EvaluateOnCallFrameParams[src]

impl EvaluateOnCallFrameParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EvaluateOnCallFrameParams[src]

impl Command for EvaluateOnCallFrameParams[src]

type Response = EvaluateOnCallFrameReturns

The type of the response this request triggers on the chromium server

impl Debug for EvaluateOnCallFrameParams[src]

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

impl Method for EvaluateOnCallFrameParams[src]

impl MethodType for EvaluateOnCallFrameParams[src]

impl PartialEq<EvaluateOnCallFrameParams> for EvaluateOnCallFrameParams[src]

impl Serialize for EvaluateOnCallFrameParams[src]

impl StructuralPartialEq for EvaluateOnCallFrameParams[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,