Type Alias rustpython_ast::located::StmtAugAssign

source ·
pub type StmtAugAssign = StmtAugAssign<SourceRange>;

Aliased Type§

struct StmtAugAssign {
    pub range: SourceRange,
    pub target: Box<Expr<SourceRange>>,
    pub op: Operator,
    pub value: Box<Expr<SourceRange>>,
}

Fields§

§range: SourceRange§target: Box<Expr<SourceRange>>§op: Operator§value: Box<Expr<SourceRange>>

Trait Implementations§