Enum semantic_analyzer::ast::IfBodyStatements
source · pub enum IfBodyStatements<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
If(Vec<IfBodyStatement<'a, I, E>>),
Loop(Vec<IfLoopBodyStatement<'a, I, E>>),
}Expand description
IfBodyStatements set of elements in the AST, that represents
control flow: if, loop
Variants§
If(Vec<IfBodyStatement<'a, I, E>>)
Loop(Vec<IfLoopBodyStatement<'a, I, E>>)
Trait Implementations§
source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfBodyStatements<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfBodyStatements<'a, I, E>
source§fn clone(&self) -> IfBodyStatements<'a, I, E>
fn clone(&self) -> IfBodyStatements<'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 IfBodyStatements<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for IfBodyStatements<'a, I, E>
source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfBodyStatements<'_, I, E>> for IfBodyStatements
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfBodyStatements<'_, I, E>> for IfBodyStatements
source§fn from(value: IfBodyStatements<'_, I, E>) -> Self
fn from(value: IfBodyStatements<'_, I, E>) -> Self
Converts to this type from the input type.
source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfBodyStatements<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfBodyStatements<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for IfBodyStatements<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for IfBodyStatements<'a, I, E>
impl<'a, I, E> RefUnwindSafe for IfBodyStatements<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for IfBodyStatements<'a, I, E>
impl<'a, I, E> Sync for IfBodyStatements<'a, I, E>
impl<'a, I, E> Unpin for IfBodyStatements<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for IfBodyStatements<'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)