[−][src]Enum syn::Expr
pub enum Expr { Box(ExprBox), InPlace(ExprInPlace), Array(ExprArray), Call(ExprCall), MethodCall(ExprMethodCall), Tuple(ExprTuple), Binary(ExprBinary), Unary(ExprUnary), Lit(ExprLit), Cast(ExprCast), Type(ExprType), If(ExprIf), IfLet(ExprIfLet), While(ExprWhile), WhileLet(ExprWhileLet), ForLoop(ExprForLoop), Loop(ExprLoop), Match(ExprMatch), Closure(ExprClosure), Unsafe(ExprUnsafe), Block(ExprBlock), Assign(ExprAssign), AssignOp(ExprAssignOp), Field(ExprField), Index(ExprIndex), Range(ExprRange), Path(ExprPath), Reference(ExprReference), Break(ExprBreak), Continue(ExprContinue), Return(ExprReturn), Macro(ExprMacro), Struct(ExprStruct), Repeat(ExprRepeat), Paren(ExprParen), Group(ExprGroup), Try(ExprTry), Catch(ExprCatch), Yield(ExprYield), Verbatim(ExprVerbatim), }
A Rust expression.
This type is available if Syn is built with the "derive"
or "full"
feature.
Syntax tree enums
This type is a syntax tree enum. In Syn this and other syntax tree enums are designed to be traversed using the following rebinding idiom.
let expr: Expr = /* ... */; match expr { Expr::MethodCall(expr) => { /* ... */ } Expr::Cast(expr) => { /* ... */ } Expr::IfLet(expr) => { /* ... */ } /* ... */ }
We begin with a variable expr
of type Expr
that has no fields
(because it is an enum), and by matching on it and rebinding a variable
with the same name expr
we effectively imbue our variable with all of
the data fields provided by the variant that it turned out to be. So for
example above if we ended up in the MethodCall
case then we get to use
expr.receiver
, expr.args
etc; if we ended up in the IfLet
case we
get to use expr.pat
, expr.then_branch
, expr.else_branch
.
The pattern is similar if the input expression is borrowed:
match *expr { Expr::MethodCall(ref expr) => {
This approach avoids repeating the variant names twice on every line.
Expr::MethodCall(ExprMethodCall { method, args, .. }) => { // repetitive
In general, the name to which a syntax tree enum variant is bound should be a suitable name for the complete syntax tree enum type.
// Binding is called `base` which is the name I would use if I were // assigning `*discriminant.base` without an `if let`. if let Expr::Tuple(ref base) = *discriminant.base {
A sign that you may not be choosing the right variable names is if you
see names getting repeated in your code, like accessing
receiver.receiver
or pat.pat
or cond.cond
.
Variants
Box(ExprBox)
A box expression: box f
.
This type is available if Syn is built with the "full"
feature.
InPlace(ExprInPlace)
A placement expression: place <- value
.
This type is available if Syn is built with the "full"
feature.
Array(ExprArray)
A slice literal expression: [a, b, c, d]
.
This type is available if Syn is built with the "full"
feature.
Call(ExprCall)
A function call expression: invoke(a, b)
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
MethodCall(ExprMethodCall)
A method call expression: x.foo::<T>(a, b)
.
This type is available if Syn is built with the "full"
feature.
Tuple(ExprTuple)
A tuple expression: (a, b, c, d)
.
This type is available if Syn is built with the "full"
feature.
Binary(ExprBinary)
A binary operation: a + b
, a * b
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Unary(ExprUnary)
A unary operation: !x
, *x
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Lit(ExprLit)
A literal in place of an expression: 1
, "foo"
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Cast(ExprCast)
A cast expression: foo as f64
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Type(ExprType)
A type ascription expression: foo: f64
.
This type is available if Syn is built with the "full"
feature.
If(ExprIf)
An if
expression with an optional else
block: if expr { ... } else { ... }
.
The else
branch expression may only be an If
, IfLet
, or
Block
expression, not any of the other types of expression.
This type is available if Syn is built with the "full"
feature.
IfLet(ExprIfLet)
An if let
expression with an optional else
block: if let pat = expr { ... } else { ... }
.
The else
branch expression may only be an If
, IfLet
, or
Block
expression, not any of the other types of expression.
This type is available if Syn is built with the "full"
feature.
While(ExprWhile)
A while loop: while expr { ... }
.
This type is available if Syn is built with the "full"
feature.
WhileLet(ExprWhileLet)
A while-let loop: while let pat = expr { ... }
.
This type is available if Syn is built with the "full"
feature.
ForLoop(ExprForLoop)
A for loop: for pat in expr { ... }
.
This type is available if Syn is built with the "full"
feature.
Loop(ExprLoop)
Conditionless loop: loop { ... }
.
This type is available if Syn is built with the "full"
feature.
Match(ExprMatch)
A match
expression: match n { Some(n) => {}, None => {} }
.
This type is available if Syn is built with the "full"
feature.
Closure(ExprClosure)
A closure expression: |a, b| a + b
.
This type is available if Syn is built with the "full"
feature.
Unsafe(ExprUnsafe)
An unsafe block: unsafe { ... }
.
This type is available if Syn is built with the "full"
feature.
Block(ExprBlock)
A blocked scope: { ... }
.
This type is available if Syn is built with the "full"
feature.
Assign(ExprAssign)
An assignment expression: a = compute()
.
This type is available if Syn is built with the "full"
feature.
AssignOp(ExprAssignOp)
A compound assignment expression: counter += 1
.
This type is available if Syn is built with the "full"
feature.
Field(ExprField)
Access of a named struct field (obj.k
) or unnamed tuple struct
field (obj.0
).
This type is available if Syn is built with the "full"
feature.
Index(ExprIndex)
A square bracketed indexing expression: vector[2]
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Range(ExprRange)
A range expression: 1..2
, 1..
, ..2
, 1..=2
, ..=2
.
This type is available if Syn is built with the "full"
feature.
Path(ExprPath)
A path like std::mem::replace
possibly containing generic
parameters and a qualified self-type.
A plain identifier like x
is a path of length 1.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Reference(ExprReference)
A referencing operation: &a
or &mut a
.
This type is available if Syn is built with the "full"
feature.
Break(ExprBreak)
A break
, with an optional label to break and an optional
expression.
This type is available if Syn is built with the "full"
feature.
Continue(ExprContinue)
A continue
, with an optional label.
This type is available if Syn is built with the "full"
feature.
Return(ExprReturn)
A return
, with an optional value to be returned.
This type is available if Syn is built with the "full"
feature.
Macro(ExprMacro)
A macro invocation expression: format!("{}", q)
.
This type is available if Syn is built with the "full"
feature.
Struct(ExprStruct)
A struct literal expression: Point { x: 1, y: 1 }
.
The rest
provides the value of the remaining fields as in S { a: 1, b: 1, ..rest }
.
This type is available if Syn is built with the "full"
feature.
Repeat(ExprRepeat)
An array literal constructed from one repeated element: [0u8; N]
.
This type is available if Syn is built with the "full"
feature.
Paren(ExprParen)
A parenthesized expression: (a + b)
.
This type is available if Syn is built with the "full"
feature.
Group(ExprGroup)
An expression contained within invisible delimiters.
This variant is important for faithfully representing the precedence
of expressions and is related to None
-delimited spans in a
TokenStream
.
This type is available if Syn is built with the "full"
feature.
Try(ExprTry)
A try-expression: expr?
.
This type is available if Syn is built with the "full"
feature.
Catch(ExprCatch)
A catch expression: do catch { ... }
.
This type is available if Syn is built with the "full"
feature.
Yield(ExprYield)
A yield expression: yield expr
.
This type is available if Syn is built with the "full"
feature.
Verbatim(ExprVerbatim)
Tokens in expression position not interpreted by Syn.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Trait Implementations
impl Synom for Expr
[src]
impl Synom for Expr
fn parse(i: Cursor) -> PResult<Self>
[src]
fn parse(i: Cursor) -> PResult<Self>
fn description() -> Option<&'static str>
[src]
fn description() -> Option<&'static str>
A short name of the type being parsed. Read more
impl Debug for Expr
[src]
impl Debug for Expr
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for Expr
[src]
impl Eq for Expr
impl PartialEq for Expr
[src]
impl PartialEq for Expr
fn eq(&self, other: &Expr) -> bool
[src]
fn eq(&self, other: &Expr) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Expr) -> bool
[src]
fn ne(&self, other: &Expr) -> bool
This method tests for !=
.
impl Hash for Expr
[src]
impl Hash for Expr
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for Expr
[src]
impl Clone for Expr
fn clone(&self) -> Expr
[src]
fn clone(&self) -> Expr
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl From<ExprBox> for Expr
[src]
impl From<ExprBox> for Expr
impl From<ExprInPlace> for Expr
[src]
impl From<ExprInPlace> for Expr
fn from(e: ExprInPlace) -> Expr
[src]
fn from(e: ExprInPlace) -> Expr
Performs the conversion.
impl From<ExprArray> for Expr
[src]
impl From<ExprArray> for Expr
impl From<ExprCall> for Expr
[src]
impl From<ExprCall> for Expr
impl From<ExprMethodCall> for Expr
[src]
impl From<ExprMethodCall> for Expr
fn from(e: ExprMethodCall) -> Expr
[src]
fn from(e: ExprMethodCall) -> Expr
Performs the conversion.
impl From<ExprTuple> for Expr
[src]
impl From<ExprTuple> for Expr
impl From<ExprBinary> for Expr
[src]
impl From<ExprBinary> for Expr
fn from(e: ExprBinary) -> Expr
[src]
fn from(e: ExprBinary) -> Expr
Performs the conversion.
impl From<ExprUnary> for Expr
[src]
impl From<ExprUnary> for Expr
impl From<ExprLit> for Expr
[src]
impl From<ExprLit> for Expr
impl From<ExprCast> for Expr
[src]
impl From<ExprCast> for Expr
impl From<ExprType> for Expr
[src]
impl From<ExprType> for Expr
impl From<ExprIf> for Expr
[src]
impl From<ExprIf> for Expr
impl From<ExprIfLet> for Expr
[src]
impl From<ExprIfLet> for Expr
impl From<ExprWhile> for Expr
[src]
impl From<ExprWhile> for Expr
impl From<ExprWhileLet> for Expr
[src]
impl From<ExprWhileLet> for Expr
fn from(e: ExprWhileLet) -> Expr
[src]
fn from(e: ExprWhileLet) -> Expr
Performs the conversion.
impl From<ExprForLoop> for Expr
[src]
impl From<ExprForLoop> for Expr
fn from(e: ExprForLoop) -> Expr
[src]
fn from(e: ExprForLoop) -> Expr
Performs the conversion.
impl From<ExprLoop> for Expr
[src]
impl From<ExprLoop> for Expr
impl From<ExprMatch> for Expr
[src]
impl From<ExprMatch> for Expr
impl From<ExprClosure> for Expr
[src]
impl From<ExprClosure> for Expr
fn from(e: ExprClosure) -> Expr
[src]
fn from(e: ExprClosure) -> Expr
Performs the conversion.
impl From<ExprUnsafe> for Expr
[src]
impl From<ExprUnsafe> for Expr
fn from(e: ExprUnsafe) -> Expr
[src]
fn from(e: ExprUnsafe) -> Expr
Performs the conversion.
impl From<ExprBlock> for Expr
[src]
impl From<ExprBlock> for Expr
impl From<ExprAssign> for Expr
[src]
impl From<ExprAssign> for Expr
fn from(e: ExprAssign) -> Expr
[src]
fn from(e: ExprAssign) -> Expr
Performs the conversion.
impl From<ExprAssignOp> for Expr
[src]
impl From<ExprAssignOp> for Expr
fn from(e: ExprAssignOp) -> Expr
[src]
fn from(e: ExprAssignOp) -> Expr
Performs the conversion.
impl From<ExprField> for Expr
[src]
impl From<ExprField> for Expr
impl From<ExprIndex> for Expr
[src]
impl From<ExprIndex> for Expr
impl From<ExprRange> for Expr
[src]
impl From<ExprRange> for Expr
impl From<ExprPath> for Expr
[src]
impl From<ExprPath> for Expr
impl From<ExprReference> for Expr
[src]
impl From<ExprReference> for Expr
fn from(e: ExprReference) -> Expr
[src]
fn from(e: ExprReference) -> Expr
Performs the conversion.
impl From<ExprBreak> for Expr
[src]
impl From<ExprBreak> for Expr
impl From<ExprContinue> for Expr
[src]
impl From<ExprContinue> for Expr
fn from(e: ExprContinue) -> Expr
[src]
fn from(e: ExprContinue) -> Expr
Performs the conversion.
impl From<ExprReturn> for Expr
[src]
impl From<ExprReturn> for Expr
fn from(e: ExprReturn) -> Expr
[src]
fn from(e: ExprReturn) -> Expr
Performs the conversion.
impl From<ExprMacro> for Expr
[src]
impl From<ExprMacro> for Expr
impl From<ExprStruct> for Expr
[src]
impl From<ExprStruct> for Expr
fn from(e: ExprStruct) -> Expr
[src]
fn from(e: ExprStruct) -> Expr
Performs the conversion.
impl From<ExprRepeat> for Expr
[src]
impl From<ExprRepeat> for Expr
fn from(e: ExprRepeat) -> Expr
[src]
fn from(e: ExprRepeat) -> Expr
Performs the conversion.
impl From<ExprParen> for Expr
[src]
impl From<ExprParen> for Expr
impl From<ExprGroup> for Expr
[src]
impl From<ExprGroup> for Expr
impl From<ExprTry> for Expr
[src]
impl From<ExprTry> for Expr
impl From<ExprCatch> for Expr
[src]
impl From<ExprCatch> for Expr
impl From<ExprYield> for Expr
[src]
impl From<ExprYield> for Expr
impl From<ExprVerbatim> for Expr
[src]
impl From<ExprVerbatim> for Expr
fn from(e: ExprVerbatim) -> Expr
[src]
fn from(e: ExprVerbatim) -> Expr
Performs the conversion.
impl ToTokens for Expr
[src]
impl ToTokens for Expr
fn to_tokens(&self, tokens: &mut TokenStream)
[src]
fn to_tokens(&self, tokens: &mut TokenStream)
Write self
to the given TokenStream
. Read more
fn into_token_stream(self) -> TokenStream
[src]
fn into_token_stream(self) -> TokenStream
Convert self
directly into a TokenStream
object. Read more
Auto Trait Implementations
Blanket Implementations
impl<T> Spanned for T where
T: ToTokens,
[src]
impl<T> Spanned for T where
T: ToTokens,
fn span(&Self) -> Span
[src]
fn span(&Self) -> Span
Returns a Span
covering the complete contents of this syntax tree node, or [Span::call_site()
] if this node is empty. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<E> SpecializationError for E
[src]
impl<E> SpecializationError for E
fn not_found<S, T>(trait_name: &'static str, method_name: &'static str) -> E where
T: ?Sized,
[src]
fn not_found<S, T>(trait_name: &'static str, method_name: &'static str) -> E where
T: ?Sized,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Create an error for a missing method specialization. Defaults to panicking with type, trait & method names. S
is the encoder/decoder state type, T
is the type being encoded/decoded, and the arguments are the names of the trait and method that should've been overridden. Read more
impl<T> Erased for T
[src]
impl<T> Erased for T
impl<T> Send for T where
T: ?Sized,
[src]
impl<T> Send for T where
T: ?Sized,
impl<T> Sync for T where
T: ?Sized,
[src]
impl<T> Sync for T where
T: ?Sized,
impl<T> Erased for T
impl<T> Erased for T