Struct syn::BareVariadic
source · pub struct BareVariadic {
pub attrs: Vec<Attribute>,
pub name: Option<(Ident, Colon)>,
pub dots: DotDotDot,
pub comma: Option<Comma>,
}
Expand description
The variadic argument of a function pointer like fn(usize, ...)
.
Fields§
§attrs: Vec<Attribute>
§name: Option<(Ident, Colon)>
§dots: DotDotDot
§comma: Option<Comma>
Trait Implementations§
source§impl Clone for BareVariadic
impl Clone for BareVariadic
source§impl ToTokens for BareVariadic
impl ToTokens for BareVariadic
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 BareVariadic
impl !Send for BareVariadic
impl !Sync for BareVariadic
impl Unpin for BareVariadic
impl UnwindSafe for BareVariadic
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.