Struct semantic_analyzer::types::expression::Expression
source · pub struct Expression {
pub expression_value: ExpressionValue,
pub operation: Option<(ExpressionOperations, Box<Expression>)>,
}Expand description
Expression
Basic expression entity representation. It contains
ExpressionValue and optional operations with other
expressions. So it’s represent flat tree.
Fields§
§expression_value: ExpressionValueExpression value
operation: Option<(ExpressionOperations, Box<Expression>)>Optional expression operation under other Expression
Trait Implementations§
source§impl Clone for Expression
impl Clone for Expression
source§fn clone(&self) -> Expression
fn clone(&self) -> Expression
Returns a copy 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 Debug for Expression
impl Debug for Expression
source§impl<E: ExtendedExpression> From<Expression<'_, E>> for Expression
impl<E: ExtendedExpression> From<Expression<'_, E>> for Expression
source§fn from(value: Expression<'_, E>) -> Self
fn from(value: Expression<'_, E>) -> Self
Converts to this type from the input type.
source§impl PartialEq for Expression
impl PartialEq for Expression
source§fn eq(&self, other: &Expression) -> bool
fn eq(&self, other: &Expression) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl ToString for Expression
impl ToString for Expression
impl StructuralPartialEq for Expression
Auto Trait Implementations§
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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