Struct syn::ExprClosure
source · pub struct ExprClosure {
pub attrs: Vec<Attribute>,
pub lifetimes: Option<BoundLifetimes>,
pub constness: Option<Const>,
pub movability: Option<Static>,
pub asyncness: Option<Async>,
pub capture: Option<Move>,
pub or1_token: Or,
pub inputs: Punctuated<Pat, Comma>,
pub or2_token: Or,
pub output: ReturnType,
pub body: Box<Expr>,
}
Expand description
A closure expression: |a, b| a + b
.
Fields§
§attrs: Vec<Attribute>
§lifetimes: Option<BoundLifetimes>
§constness: Option<Const>
§movability: Option<Static>
§asyncness: Option<Async>
§capture: Option<Move>
§or1_token: Or
§inputs: Punctuated<Pat, Comma>
§or2_token: Or
§output: ReturnType
§body: Box<Expr>
Trait Implementations§
source§impl Clone for ExprClosure
impl Clone for ExprClosure
source§impl From<ExprClosure> for Expr
impl From<ExprClosure> for Expr
source§fn from(e: ExprClosure) -> Expr
fn from(e: ExprClosure) -> Expr
Converts to this type from the input type.
source§impl Parse for ExprClosure
impl Parse for ExprClosure
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl ToTokens for ExprClosure
impl ToTokens for ExprClosure
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl RefUnwindSafe for ExprClosure
impl !Send for ExprClosure
impl !Sync for ExprClosure
impl Unpin for ExprClosure
impl UnwindSafe for ExprClosure
Blanket Implementations§
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
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.