Struct syn::ExprTuple [−][src]
pub struct ExprTuple {
    pub attrs: Vec<Attribute>,
    pub paren_token: Paren,
    pub elems: Punctuated<Expr, Comma>,
}A tuple expression: (a, b, c, d).
This type is available only if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute>paren_token: Parenelems: Punctuated<Expr, Comma>Trait Implementations
impl Clone for ExprTuple[src]
impl Clone for ExprTuple[src]fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl ToTokens for ExprTuple[src]
impl ToTokens for ExprTuple[src]