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
[src]

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

Performs the conversion.

impl From<P<Expr>> for LhsExpr
[src]

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

Performs the conversion.