Struct rush_analyzer::ast::AnalyzedLetStmt
source · pub struct AnalyzedLetStmt<'src> {
pub name: &'src str,
pub expr: AnalyzedExpression<'src>,
pub mutable: bool,
pub used: bool,
}Fields§
§name: &'src str§expr: AnalyzedExpression<'src>§mutable: bool§used: boolTrait Implementations§
source§impl<'src> Clone for AnalyzedLetStmt<'src>
impl<'src> Clone for AnalyzedLetStmt<'src>
source§fn clone(&self) -> AnalyzedLetStmt<'src>
fn clone(&self) -> AnalyzedLetStmt<'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