Type Alias rustpython_ast::located::StmtAssign
source · pub type StmtAssign = StmtAssign<SourceRange>;
Aliased Type§
struct StmtAssign {
pub range: SourceRange,
pub targets: Vec<Expr<SourceRange>>,
pub value: Box<Expr<SourceRange>>,
pub type_comment: Option<String>,
}
Fields§
§range: SourceRange
§targets: Vec<Expr<SourceRange>>
§value: Box<Expr<SourceRange>>
§type_comment: Option<String>