Enum semantic_analyzer::ast::ExpressionValue
source · pub enum ExpressionValue<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
ValueName(ValueName<'a>),
PrimitiveValue(PrimitiveValue),
FunctionCall(FunctionCall<'a, I, E>),
StructValue(ExpressionStructValue<'a>),
Expression(Box<Expression<'a, I, E>>),
ExtendedExpression(Box<E>),
_Marker(Infallible, PhantomData<I>),
}Expand description
ExpressionValue expression value element of AST.
Basic entity for Expression elements of AST.
Expression value contains entities:
ValueName- value name of expressionPrimitiveValue- primitive value name of expression (for example, it’s numbers: 10, 3.2 and other primitive values)FunctionCall- function call (with parameters) of expressionStructValue- value of expression based onStructtypes.Expression- expression representation (sub branch)
Variants§
ValueName(ValueName<'a>)
Value name of expression
PrimitiveValue(PrimitiveValue)
Primitive value of expression (like numbers etc.)
FunctionCall(FunctionCall<'a, I, E>)
Function call (with parameters) of expression
StructValue(ExpressionStructValue<'a>)
Value of expression based on Struct types.
Expression(Box<Expression<'a, I, E>>)
Expression representation (sub branch)
ExtendedExpression(Box<E>)
Extended expression
_Marker(Infallible, PhantomData<I>)
Trait Implementations§
source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for ExpressionValue<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for ExpressionValue<'a, I, E>
source§fn clone(&self) -> ExpressionValue<'a, I, E>
fn clone(&self) -> ExpressionValue<'a, I, E>
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<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for ExpressionValue<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for ExpressionValue<'a, I, E>
source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<ExpressionValue<'_, I, E>> for ExpressionValue
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<ExpressionValue<'_, I, E>> for ExpressionValue
source§fn from(value: ExpressionValue<'_, I, E>) -> Self
fn from(value: ExpressionValue<'_, I, E>) -> Self
Converts to this type from the input type.
source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for ExpressionValue<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for ExpressionValue<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for ExpressionValue<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for ExpressionValue<'a, I, E>
impl<'a, I, E> RefUnwindSafe for ExpressionValue<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for ExpressionValue<'a, I, E>
impl<'a, I, E> Sync for ExpressionValue<'a, I, E>
impl<'a, I, E> Unpin for ExpressionValue<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for ExpressionValue<'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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)