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

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

Variants

NotYetParsed
Unstable (rustc_private)
AttributesParsed(ThinAttributes)
Unstable (rustc_private)
AlreadyParsed(P<Expr>)
Unstable (rustc_private)

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.