[−][src]Enum endbasic_core::ast::Expr
Represents an expression and provides mechanisms to evaluate it.
Variants
Boolean(bool)A literal boolean value.
Integer(i32)A literal integer value.
Symbol(VarRef)A reference to a variable.
Text(String)A literal string value.
Arithmetic addition of two expressions.
Arithmetic subtraction of two expressions.
Arithmetic multiplication of two expressions.
Arithmetic division of two expressions.
Arithmetic modulo operation of two expressions.
Arithmetic sign flip of an expression.
Relational equality comparison of two expressions.
Relational inequality comparison of two expressions.
Relational less-than comparison of two expressions.
Relational less-than or equal-to comparison of two expressions.
Relational greater-than comparison of two expressions.
Relational greater-than or equal-to comparison of two expressions.
Logical and of two expressions.
Logical not of an expression.
Logical or of two expressions.
Logical xor of two expressions.
Implementations
impl Expr[src]
pub fn eval(&self, vars: &Vars) -> Result<Value>[src]
Evaluates the expression to a value.
Variable references are resolved by querying vars. Errors in the computation are returned
via the special Value::Bad type.
Trait Implementations
impl Clone for Expr[src]
impl Debug for Expr[src]
impl Eq for Expr[src]
impl PartialEq<Expr> for Expr[src]
impl StructuralEq for Expr[src]
impl StructuralPartialEq for Expr[src]
Auto Trait Implementations
impl RefUnwindSafe for Expr
impl Send for Expr
impl Sync for Expr
impl Unpin for Expr
impl UnwindSafe for Expr
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>,