pub struct EvaluateBuilder { /* private fields */ }Implementations§
Source§impl EvaluateBuilder
impl EvaluateBuilder
pub fn expression(self, expression: impl Into<String>) -> Self
pub fn object_group(self, object_group: impl Into<String>) -> Self
pub fn include_command_line_api( self, include_command_line_api: impl Into<bool>, ) -> Self
pub fn silent(self, silent: impl Into<bool>) -> Self
pub fn context_id(self, context_id: impl Into<ExecutionContextId>) -> Self
pub fn return_by_value(self, return_by_value: impl Into<bool>) -> Self
pub fn generate_preview(self, generate_preview: impl Into<bool>) -> Self
pub fn user_gesture(self, user_gesture: impl Into<bool>) -> Self
pub fn await_promise(self, await_promise: impl Into<bool>) -> Self
pub fn throw_on_side_effect(self, throw_on_side_effect: impl Into<bool>) -> Self
pub fn timeout(self, timeout: impl Into<TimeDelta>) -> Self
pub fn disable_breaks(self, disable_breaks: impl Into<bool>) -> Self
pub fn repl_mode(self, repl_mode: impl Into<bool>) -> Self
pub fn allow_unsafe_eval_blocked_by_csp( self, allow_unsafe_eval_blocked_by_csp: impl Into<bool>, ) -> Self
pub fn unique_context_id(self, unique_context_id: impl Into<String>) -> Self
pub fn serialization_options( self, serialization_options: impl Into<SerializationOptions>, ) -> Self
pub fn build(self) -> Result<Evaluate, String>
Trait Implementations§
Source§impl Clone for EvaluateBuilder
impl Clone for EvaluateBuilder
Source§fn clone(&self) -> EvaluateBuilder
fn clone(&self) -> EvaluateBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for EvaluateBuilder
impl Default for EvaluateBuilder
Source§fn default() -> EvaluateBuilder
fn default() -> EvaluateBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvaluateBuilder
impl RefUnwindSafe for EvaluateBuilder
impl Send for EvaluateBuilder
impl Sync for EvaluateBuilder
impl Unpin for EvaluateBuilder
impl UnsafeUnpin for EvaluateBuilder
impl UnwindSafe for EvaluateBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more