Struct chrome_remote_interface_model::debugger::EvaluateOnCallFrameCommand [−][src]
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]
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]
Terminate execution after timing out (number of milliseconds).
Trait Implementations
impl Clone for EvaluateOnCallFrameCommand[src]
fn clone(&self) -> EvaluateOnCallFrameCommand[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Command for EvaluateOnCallFrameCommand[src]
type Return = EvaluateOnCallFrameReturn
Return type.
const METHOD: &'static str[src]
fn into_request(self, session_id: Option<SessionId>, id: u32) -> Request<Self> where
Self: Sized, [src]
Self: Sized,
impl Debug for EvaluateOnCallFrameCommand[src]
impl<'de> Deserialize<'de> for EvaluateOnCallFrameCommand[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for EvaluateOnCallFrameCommand[src]
Auto Trait Implementations
impl RefUnwindSafe for EvaluateOnCallFrameCommand[src]
impl Send for EvaluateOnCallFrameCommand[src]
impl Sync for EvaluateOnCallFrameCommand[src]
impl Unpin for EvaluateOnCallFrameCommand[src]
impl UnwindSafe for EvaluateOnCallFrameCommand[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,