pub struct ItemMacro2 {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub macro_token: Macro,
pub ident: Ident,
pub paren_token: Paren,
pub args: TokenStream,
pub brace_token: Brace,
pub body: TokenStream,
}
Expand description
A 2.0-style declarative macro introduced by the macro
keyword.
This type is available if Syn is built with the "full"
feature.
Fields§
§attrs: Vec<Attribute>
§vis: Visibility
§macro_token: Macro
§ident: Ident
§paren_token: Paren
§args: TokenStream
§brace_token: Brace
§body: TokenStream
Trait Implementations§
Source§impl Clone for ItemMacro2
impl Clone for ItemMacro2
Source§fn clone(&self) -> ItemMacro2
fn clone(&self) -> ItemMacro2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ItemMacro2
impl Debug for ItemMacro2
Source§impl From<ItemMacro2> for Item
impl From<ItemMacro2> for Item
Source§fn from(e: ItemMacro2) -> Item
fn from(e: ItemMacro2) -> Item
Converts to this type from the input type.
Source§impl Hash for ItemMacro2
impl Hash for ItemMacro2
Source§impl PartialEq for ItemMacro2
impl PartialEq for ItemMacro2
Source§impl Synom for ItemMacro2
impl Synom for ItemMacro2
Source§impl ToTokens for ItemMacro2
impl ToTokens for ItemMacro2
impl Eq for ItemMacro2
Auto Trait Implementations§
impl Freeze for ItemMacro2
impl RefUnwindSafe for ItemMacro2
impl !Send for ItemMacro2
impl !Sync for ItemMacro2
impl Unpin for ItemMacro2
impl UnwindSafe for ItemMacro2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
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.