Struct rush_analyzer::ast::AnalyzedWhileStmt
source · pub struct AnalyzedWhileStmt<'src> {
pub cond: AnalyzedExpression<'src>,
pub block: AnalyzedBlock<'src>,
pub never_terminates: bool,
}Fields§
§cond: AnalyzedExpression<'src>§block: AnalyzedBlock<'src>§never_terminates: boolTrait Implementations§
source§impl<'src> Clone for AnalyzedWhileStmt<'src>
impl<'src> Clone for AnalyzedWhileStmt<'src>
source§fn clone(&self) -> AnalyzedWhileStmt<'src>
fn clone(&self) -> AnalyzedWhileStmt<'src>
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 more