Enum syn::AttrStyle [−][src]
pub enum AttrStyle {
Outer,
Inner(Bang),
}
Expand description
Distinguishes between attributes that decorate an item and attributes that are contained within an item.
This type is available only 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)
Tuple Fields
0: Bang
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AttrStyle
impl UnwindSafe for AttrStyle
Blanket Implementations
Mutably borrows from an owned value. Read more