pub struct IfStatement<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
pub condition: IfCondition<'a, I, E>,
pub body: IfBodyStatements<'a, I, E>,
pub else_statement: Option<IfBodyStatements<'a, I, E>>,
pub else_if_statement: Option<Box<IfStatement<'a, I, E>>>,
}
Expand description
IfStatement
if statement AST element.
Contains full representation of if statement with entities:
- if-condition
- If-body statement - body of if-condition success
- Ff-else-body statement - body of else-condition success
- Else-if-body statement - body of else-if-condition success
Fields§
§condition: IfCondition<'a, I, E>
If-condition
body: IfBodyStatements<'a, I, E>
If-body statement - body of if-condition success
else_statement: Option<IfBodyStatements<'a, I, E>>
If-else-body statement - body of else-condition success
else_if_statement: Option<Box<IfStatement<'a, I, E>>>
Else-if-body statement - body of else-if-condition success
Trait Implementations§
Source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfStatement<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for IfStatement<'a, I, E>
Source§fn clone(&self) -> IfStatement<'a, I, E>
fn clone(&self) -> IfStatement<'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 IfStatement<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for IfStatement<'a, I, E>
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfStatement<'_, I, E>> for IfStatement
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<IfStatement<'_, I, E>> for IfStatement
Source§fn from(value: IfStatement<'_, I, E>) -> Self
fn from(value: IfStatement<'_, I, E>) -> Self
Converts to this type from the input type.
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for IfStatement<'_, I, E>
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for IfStatement<'_, I, E>
fn location(&self) -> CodeLocation
Source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfStatement<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for IfStatement<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for IfStatement<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for IfStatement<'a, I, E>
impl<'a, I, E> RefUnwindSafe for IfStatement<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for IfStatement<'a, I, E>
impl<'a, I, E> Sync for IfStatement<'a, I, E>
impl<'a, I, E> Unpin for IfStatement<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for IfStatement<'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