pub type StmtAugAssign = StmtAugAssign<SourceRange>;Aliased Type§
pub 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>>