Type Definition python_ast::ast::BoxedExpr [] [src]

type BoxedExpr = Box<Expr>;

Type alias for a boxed expression. The Expr enum needs this heap indirection to break a recursive type definition that would otherwise result in a struct of infinite size.