Struct Expression
pub struct Expression<'a>(/* private fields */);Expand description
An expression sub-tree in an AST.
Implementations§
§impl Expression<'_>
impl Expression<'_>
pub fn eval_with_context(
&self,
context: &mut EvalContext<'_, '_, '_, '_, '_, '_>,
) -> Result<Dynamic, Box<EvalAltResult>>
pub fn eval_with_context( &self, context: &mut EvalContext<'_, '_, '_, '_, '_, '_>, ) -> Result<Dynamic, Box<EvalAltResult>>
Evaluate this expression tree within an evaluation context.
§WARNING - Low Level API
This function is very low level. It evaluates an expression from an AST.
pub fn eval_with_context_raw(
&self,
context: &mut EvalContext<'_, '_, '_, '_, '_, '_>,
rewind_scope: bool,
) -> Result<Dynamic, Box<EvalAltResult>>
👎Deprecated: This API is NOT deprecated, but it is considered volatile and may change in the future.
pub fn eval_with_context_raw( &self, context: &mut EvalContext<'_, '_, '_, '_, '_, '_>, rewind_scope: bool, ) -> Result<Dynamic, Box<EvalAltResult>>
Evaluate this expression tree within an evaluation context.
The following option is available:
- whether to rewind the
Scopeafter evaluation if the expression is a [StmtBlock][crate::ast::StmtBlock]
§WARNING - Unstable API
This API is volatile and may change in the future.
§WARNING - Low Level API
This function is extremely low level. It evaluates an expression from an AST.
pub fn get_string_value(&self) -> Option<&str>
pub fn get_string_value(&self) -> Option<&str>
Get the value of this expression if it is a variable name or a string constant.
Returns None also if the constant is not of the specified type.
pub fn get_literal_value<T>(&self) -> Option<T>where
T: Variant + Clone,
pub fn get_literal_value<T>(&self) -> Option<T>where
T: Variant + Clone,
Get the value of this expression if it is a literal constant.
Supports INT, [FLOAT][crate::FLOAT], (), char, bool and
ImmutableString.
Returns None also if the constant is not of the specified type.
§impl Expression<'_>
impl Expression<'_>
pub fn get_variable_name(&self) -> Option<&str>
👎Deprecated since 1.4.0: use get_string_value instead
pub fn get_variable_name(&self) -> Option<&str>
get_string_value insteadIf this expression is a variable name, return it. Otherwise None.
§Deprecated
This method is deprecated.
Use get_string_value instead.
This method will be removed in the next major version.
Trait Implementations§
§impl AsRef<Expr> for Expression<'_>
impl AsRef<Expr> for Expression<'_>
§impl Borrow<Expr> for Expression<'_>
impl Borrow<Expr> for Expression<'_>
§impl<'a> Clone for Expression<'a>
impl<'a> Clone for Expression<'a>
§fn clone(&self) -> Expression<'a>
fn clone(&self) -> Expression<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more