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
OuterInner(Bang)
Trait Implementations
impl Copy for AttrStyle[src]
impl Copy for AttrStyleimpl Debug for AttrStyle[src]
impl Debug for AttrStylefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for AttrStyle[src]
impl Eq for AttrStyleimpl PartialEq for AttrStyle[src]
impl PartialEq for AttrStylefn eq(&self, other: &AttrStyle) -> bool[src]
fn eq(&self, other: &AttrStyle) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &AttrStyle) -> bool[src]
fn ne(&self, other: &AttrStyle) -> boolThis method tests for !=.
impl Hash for AttrStyle[src]
impl Hash for AttrStylefn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Clone for AttrStyle[src]
impl Clone for AttrStyle