welly_parser::expr

Type Alias MaybeExpr

source
pub type MaybeExpr = Option<Box<Expr>>;
Expand description

Represents a possibly missing Expr.

Aliased Type§

enum MaybeExpr {
    None,
    Some(Box<Expr>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<Expr>)

Some value of type T.