Enum syntex_syntax::parse::parser::LhsExpr [] [src]

pub enum LhsExpr {
    NotYetParsed,
    AttributesParsed(ThinAttributes),
    AlreadyParsed(P<Expr>),
}

Variants

NotYetParsed
AttributesParsed
AlreadyParsed

Trait Implementations

impl From<Option<ThinAttributes>> for LhsExpr

fn from(o: Option<ThinAttributes>) -> Self

impl From<P<Expr>> for LhsExpr

fn from(expr: P<Expr>) -> Self