pub struct Expression<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
pub expression_value: ExpressionValue<'a, I, E>,
pub operation: Option<(ExpressionOperations, Box<Expression<'a, I, E>>)>,
}
Expand description
Expression
element of AST is basic entity that
represent expression, and optionally expression with optional
operations with other expression. So it can be expression tree
with expression operations.
Fields§
§expression_value: ExpressionValue<'a, I, E>
Expression value itself
operation: Option<(ExpressionOperations, Box<Expression<'a, I, E>>)>
Optional expression operation with other expression value
Trait Implementations§
Source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for Expression<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for Expression<'a, I, E>
Source§fn clone(&self) -> Expression<'a, I, E>
fn clone(&self) -> Expression<'a, I, E>
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<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for Expression<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for Expression<'a, I, E>
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<Expression<'_, I, E>> for Expression
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<Expression<'_, I, E>> for Expression
Source§fn from(value: Expression<'_, I, E>) -> Self
fn from(value: Expression<'_, I, E>) -> Self
Converts to this type from the input type.
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for Expression<'_, I, E>
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for Expression<'_, I, E>
fn location(&self) -> CodeLocation
Source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for Expression<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for Expression<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for Expression<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for Expression<'a, I, E>
impl<'a, I, E> RefUnwindSafe for Expression<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for Expression<'a, I, E>
impl<'a, I, E> Sync for Expression<'a, I, E>
impl<'a, I, E> Unpin for Expression<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for Expression<'a, I, E>where
I: UnwindSafe,
E: UnwindSafe,
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