pub enum IfLoopBodyStatement<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
LetBinding(LetBinding<'a, I, E>),
Binding(Binding<'a, I, E>),
FunctionCall(FunctionCall<'a, I, E>),
If(IfStatement<'a, I, E>),
Loop(Vec<LoopBodyStatement<'a, I, E>>),
Return(Expression<'a, I, E>),
Break,
Continue,
}
Expand description
IfLoopBodyStatement
statement of loop-if-body elements tree of AST.
Used as body statement of If-control flow in the Loop
AST element.
Variants§
LetBinding(LetBinding<'a, I, E>)
Binding(Binding<'a, I, E>)
FunctionCall(FunctionCall<'a, I, E>)
If(IfStatement<'a, I, E>)
Loop(Vec<LoopBodyStatement<'a, I, E>>)
Return(Expression<'a, I, E>)
Break
Continue
Trait Implementations§
Source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfLoopBodyStatement<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfLoopBodyStatement<'a, I, E>
Source§fn clone(&self) -> IfLoopBodyStatement<'a, I, E>
fn clone(&self) -> IfLoopBodyStatement<'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 IfLoopBodyStatement<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for IfLoopBodyStatement<'a, I, E>
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfLoopBodyStatement<'_, I, E>> for IfLoopBodyStatement
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfLoopBodyStatement<'_, I, E>> for IfLoopBodyStatement
Source§fn from(value: IfLoopBodyStatement<'_, I, E>) -> Self
fn from(value: IfLoopBodyStatement<'_, I, E>) -> Self
Converts to this type from the input type.
Source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfLoopBodyStatement<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfLoopBodyStatement<'a, I, E>
Source§fn eq(&self, other: &IfLoopBodyStatement<'a, I, E>) -> bool
fn eq(&self, other: &IfLoopBodyStatement<'a, I, E>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for IfLoopBodyStatement<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for IfLoopBodyStatement<'a, I, E>
impl<'a, I, E> RefUnwindSafe for IfLoopBodyStatement<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for IfLoopBodyStatement<'a, I, E>
impl<'a, I, E> Sync for IfLoopBodyStatement<'a, I, E>
impl<'a, I, E> Unpin for IfLoopBodyStatement<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for IfLoopBodyStatement<'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