Enum syn::AttrStyle
[−]
[src]
pub enum AttrStyle { Outer, Inner(Bang), }
Distinguishes between attributes that decorate an item and attributes that are contained within an item.
This type is available if Syn is built with the "derive"
or "full"
feature.
Outer attributes
#[repr(transparent)]
/// # Example
/** Please file an issue */
Inner attributes
#![feature(proc_macro)]
//! # Example
/*! Please file an issue */
Variants
Outer
Inner(Bang)