//! # new_from_args
//!//! This module contains the `NewFromArgs` trait which represents an attribute info struct that can be created from arguments
usesyn::{Token,punctuated::Punctuated};/// Represents an attribute info struct that can be created from arguments
pubtraitNewFromArgs<TArg> {fnnew(args:Punctuated<TArg, Token![,]>)->Self;}