pub struct RuntimeExpressionEvaluationConfiguration {
pub language: String,
pub mode: Option<String>,
}Expand description
Represents an object used to configure the workflow’s runtime expression evaluation
Fields§
§language: StringGets/sets the language used for writing runtime expressions
mode: Option<String>Gets/sets the evaluation mode used for runtime expressions. Defaults to ‘loose’.
Trait Implementations§
Source§impl Clone for RuntimeExpressionEvaluationConfiguration
impl Clone for RuntimeExpressionEvaluationConfiguration
Source§fn clone(&self) -> RuntimeExpressionEvaluationConfiguration
fn clone(&self) -> RuntimeExpressionEvaluationConfiguration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuntimeExpressionEvaluationConfiguration
impl Default for RuntimeExpressionEvaluationConfiguration
Source§fn default() -> RuntimeExpressionEvaluationConfiguration
fn default() -> RuntimeExpressionEvaluationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeExpressionEvaluationConfiguration
impl<'de> Deserialize<'de> for RuntimeExpressionEvaluationConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuntimeExpressionEvaluationConfiguration
impl PartialEq for RuntimeExpressionEvaluationConfiguration
Source§fn eq(&self, other: &RuntimeExpressionEvaluationConfiguration) -> bool
fn eq(&self, other: &RuntimeExpressionEvaluationConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RuntimeExpressionEvaluationConfiguration
impl StructuralPartialEq for RuntimeExpressionEvaluationConfiguration
Auto Trait Implementations§
impl Freeze for RuntimeExpressionEvaluationConfiguration
impl RefUnwindSafe for RuntimeExpressionEvaluationConfiguration
impl Send for RuntimeExpressionEvaluationConfiguration
impl Sync for RuntimeExpressionEvaluationConfiguration
impl Unpin for RuntimeExpressionEvaluationConfiguration
impl UnsafeUnpin for RuntimeExpressionEvaluationConfiguration
impl UnwindSafe for RuntimeExpressionEvaluationConfiguration
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