pub enum StringExpression {
Condition(IntegerExpressionId, Span, StringExpressionId, Span, StringExpressionId),
Literal(StringLiteral),
SimParam(StringExpressionId),
VariableReference(VariableId),
ParameterReference(ParameterId),
}
Variants§
Condition(IntegerExpressionId, Span, StringExpressionId, Span, StringExpressionId)
Literal(StringLiteral)
SimParam(StringExpressionId)
VariableReference(VariableId)
ParameterReference(ParameterId)
Trait Implementations§
Source§impl Clone for StringExpression
impl Clone for StringExpression
Source§fn clone(&self) -> StringExpression
fn clone(&self) -> StringExpression
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 moreAuto Trait Implementations§
impl Freeze for StringExpression
impl RefUnwindSafe for StringExpression
impl Send for StringExpression
impl Sync for StringExpression
impl Unpin for StringExpression
impl UnwindSafe for StringExpression
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