Struct chrome_remote_interface_model::runtime::EvaluateCommandBuilder [−][src]
Implementations
impl EvaluateCommandBuilder[src]
pub fn expression(&mut self, v: String) -> &mut Self[src]
Expression to evaluate.
pub fn object_group(&mut self, v: String) -> &mut Self[src]
Symbolic group name that can be used to release multiple objects.
pub fn include_command_line_api(&mut self, v: bool) -> &mut Self[src]
Determines whether Command Line API should be available during the evaluation.
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 context_id(&mut self, v: ExecutionContextId) -> &mut Self[src]
Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
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]
Whether preview should be generated for the result.
pub fn user_gesture(&mut self, v: bool) -> &mut Self[src]
Whether execution should be treated as initiated by user in the UI.
pub fn await_promise(&mut self, v: bool) -> &mut Self[src]
Whether execution should await for resulting value and return once awaited promise is
resolved.
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.
This implies disableBreaks below.
pub fn timeout(&mut self, v: TimeDelta) -> &mut Self[src]
Terminate execution after timing out (number of milliseconds).
pub fn disable_breaks(&mut self, v: bool) -> &mut Self[src]
Disable breakpoints during execution.
pub fn repl_mode(&mut self, v: bool) -> &mut Self[src]
Setting this flag to true enables let re-declaration and top-level await.
Note that let variables can only be re-declared if they originate from
replMode themselves.
pub fn allow_unsafe_eval_blocked_by_csp(&mut self, v: bool) -> &mut Self[src]
The Content Security Policy (CSP) for the target might block 'unsafe-eval' which includes eval(), Function(), setTimeout() and setInterval() when called with non-callable arguments. This flag bypasses CSP for this evaluation and allows unsafe-eval. Defaults to true.
pub fn build(&mut self) -> Result<EvaluateCommand, &'static str>[src]
Trait Implementations
impl Clone for EvaluateCommandBuilder[src]
fn clone(&self) -> EvaluateCommandBuilder[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for EvaluateCommandBuilder[src]
impl Default for EvaluateCommandBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for EvaluateCommandBuilder[src]
impl Send for EvaluateCommandBuilder[src]
impl Sync for EvaluateCommandBuilder[src]
impl Unpin for EvaluateCommandBuilder[src]
impl UnwindSafe for EvaluateCommandBuilder[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> 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>,