Enum syn::ConstExpr [−][src]
Variants
Call(Box<ConstExpr>, Vec<ConstExpr>)
A function call
The first field resolves to the function itself, and the second field is the list of arguments
Binary(BinOp, Box<ConstExpr>, Box<ConstExpr>)
A binary operation (For example: a + b
, a * b
)
Unary(UnOp, Box<ConstExpr>)
A unary operation (For example: !x
, *x
)
Lit(Lit)
A literal (For example: 1
, "foo"
)
Cast(Box<ConstExpr>, Box<Ty>)
A cast (foo as f64
)
Path(Path)
Variable reference, possibly containing ::
and/or type
parameters, e.g. foo::bar::
Index(Box<ConstExpr>, Box<ConstExpr>)
An indexing operation (foo[2]
)
Paren(Box<ConstExpr>)
No-op: used solely so we can pretty-print faithfully
Other(Other)
If compiling with full support for expression syntax, any expression is allowed
Trait Implementations
impl ToTokens for ConstExpr
[src]
[+]
impl ToTokens for ConstExpr
impl Debug for ConstExpr
[src]
[+]
impl Debug for ConstExpr
impl Clone for ConstExpr
[src]
[+]
impl Clone for ConstExpr
impl Eq for ConstExpr
[src]
impl Eq for ConstExpr
impl PartialEq for ConstExpr
[src]
[+]
impl PartialEq for ConstExpr
impl Hash for ConstExpr
[src]
[+]
impl Hash for ConstExpr