pub type SpannedExpr<'a, T> = Spanned<'a, Expr<'a, T>>;Expand description
Expr with the associated type and code span.
Aliased Type§
pub struct SpannedExpr<'a, T> {
pub extra: Expr<'a, T>,
/* private fields */
}Fields§
§extra: Expr<'a, T>Extra information that can be embedded by the user.